-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Cal</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 5px 0;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.content {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Text Cal</h1>
</header>
<nav>
<a href="/textcal/index.html">Home</a>
<a href="/textcal/privacyinfo.html">Privacy Info</a>
</nav>
<div class="container">
<div class="content">
<img src="textcal.jpg" alt="Text Cal" width="300" height="300">
<h2>About the Text Cal app</h2>
<p>Text Cal shows Google Calendar events in text mode (read-only) including all event details.
No need to open each event separately which can save your time. The time span is three weeks.</p>
<p>You can also copy easily the text if you select
the Simple Text mode in the top right corner.</p>
<p>By tapping your account bar you can
select other calendars that are visible to your google account.</p>
<p>You can navigate to future or past one week a time by using buttons at the top.</p>
<p>Refreshing works by swiping down.</p>
</div>
</div>
<!-- <footer>
© 2023 My Simple Website. All rights reserved.
</footer>
-->
</body>
</html>