-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
My Pages
</title>
<style>
/* iPhone X/XS */
@media only screen
and (min-device-width: 375px)
and (max-device-width: 812px)
and (-webkit-min-device-pixel-ratio: 3) {
body {
font-size: 18px;
}
}
</style>
</head>
<body>
<h1>
Welcome to My Pages
</h1>
<ul>
<li>
<a href="future_of_bible_bot.html">
Future of Bible Bot
</a>
</li>
<li>
<a href="quickstart.html">
Quick Start
</a>
</li>
<li>
<a href="tutorial_page.html">
Tutorial Page
</a>
</li>
<li>
<a href="news-assistant-user-guide.html">
News Assistant User Guide
</a>
</li>
<li>
<a href="EGW.html">
Ellen G. White and Seventh Day Adventist
</a>
</li>
</ul>
</body>
</html>