-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.15 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
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>Pseudo Presentation</title>
<meta name = "description" content = "">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<link rel = "stylesheet" href = "css/main.css">
<meta name = "theme-color" content = "#fafafa">
<script src = "https://kit.fontawesome.com/25dd6bc137.js" crossorigin = "anonymous"></script>
<script src = "https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity = "sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin = "anonymous"></script>
</head>
<body>
<main class = "container">
<section class = "page" id = "page-1">
<h1>Welcome To My Presentation</h1>
<p>Primus torquis saepe transferres finis est.
Asparagus chili has to have a sun-dried, small meatloaf component.
</p>
<div class = "btn">
<a href = "#page-2">Next Page<i class = "fas fa-arrow-circle-down"></i> </a>
</div>
</section>
<section class = "page" id = "page-2">
<h1>Page 2</h1>
<p>The skiff dies life like a undead mainland.
Dry chicken fully, then mix with ice water and serve ultimately in jar.
</p>
<div class = "btn btn-dark">
<a href = "#page-1">Prev Page<i class = "fas fa-arrow-circle-up"></i> </a>
</div>
<div class = "btn">
<a href = "#page-3">Next Page<i class = "fas fa-arrow-circle-down"></i> </a>
</div>
</section>
<section class = "page" id = "page-3">
<h1>Page 3</h1>
<p>Not earth or zion, handle the art.
Sonic shower, beauty, and pattern.
</p>
<div class = "btn btn-dark">
<a href = "#page-2">Prev Page<i class = "fas fa-arrow-circle-up"></i> </a>
</div>
<div class = "btn">
<a href = "#page-4">Next Page<i class = "fas fa-arrow-circle-down"></i> </a>
</div>
</section>
<section class = "page" id = "page-4">
<h1>Page 4</h1>
<p>All children like smashed chilis in cauliflower lassi and chocolate.</p>
<div class = "btn btn-dark">
<a href = "#page-3">Prev Page<i class = "fas fa-arrow-circle-up"></i> </a>
</div>
</section>
</main>
<script src = "js/main.js"></script>
</body>
</html>