-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 2.01 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>
<title>Wonderhoy!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/main.css">
<link rel="icon" type="image/png" href="assets/emu.png"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Niconne&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navigation-bar flex-container">
<a href="/" class="redirect">
<img id="nav-icon" src="./assets/emu.png">
</a>
<a href="/" class="redirect">Home</a>
<div class="dropdown">
<button class="dropdown-button">Pages
<i class="down-arrow"></i>
</button>
<div class="dropdown-content">
<a href="pages/about.html" class="redirect">About</a>
<a href="pages/contact.html" class="redirect">Contact</a>
<a href="pages/timeline.html" class="redirect">Timeline</a>
<a href="pages/updates.html" class="redirect">Updates</a>
</div>
</div>
</nav>
<script src="./scripts/index.js"></script>
<h1 id="bottom-wonderhoy">wonderhoy.</h1>
<img id="scrolling-gif" src="./assets/night-street-sakura-short.gif">
<a id="nav-button-anchor" href="./pages/about.html">
<button id="nav-button">More ></button>
</a>
<div class="white-background section-block" style="display:none">
<!-- THIS DIV IS NOT DISPLAYED!!! FIGURE OUT HOW TO DISPLAY IT BELOW THE SCROLL -->
<div class="flex-container">
<div style="flex:1">
<img class="responsive-image" src="../assets/emu.png">
</div>
<div class="quote" style="flex:3">
"Be like a rocky promontory against which the restless surf continually pounds. <br />
It stands fast while the churning sea is lulled to sleep at its feet."
</div>
</div>
</div>
</body>
</html>