-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathself.html
More file actions
63 lines (53 loc) · 1.89 KB
/
self.html
File metadata and controls
63 lines (53 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel=stylesheet href="css/style.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<title>Final Project</title>
</head>
<body>
<!-- ------ NAV BAR ------>
<!-- Top Navigation -->
<div class="topnav" id="navbar">
<!-- Centered Logo Home Link -->
<div class="topnav-centered">
<a href="index.html"><img src="img/centernav_logo.png" alt="image only site logo" class="navimg"></a>
</div>
<!-- Left-Aligned Links -->
<a href="self.html" id="self">self</a>
<a href="relationships.html" id="relationships">relationships</a>
<a href="style.html" id="style">style</a>
<!-- Right-Aligned Links -->
<div class="topnav-right">
<a href="faves.html" id="faves">faves</a>
<a href="about.html" id="about">about</a>
<a href="contact.html" id="contact">contact</a>
</div>
</div>
</nav>
<!-- Hype Generator -->
<div class="hypegen">
<h1>Hype Generator</h1>
<div id="quoteDisplay">
</div>
<button onclick="newQuote()">Hype Me!</button>
</div>
<script src="js/affirmgen.js"></script>
<!-- Sticky Nav JS Import
<script src="js/stickynav.js"></script> -->
</body>
<!-- FOOTER -->
<footer>
<div class="footer">
<div class="copyright">© Christina Moon Zurowski Copyright 2021</div>
<div class="socialmedia">
<a href="" class="fab fa-github-alt fa-2x"></a>
<a href="" class="fab fa-reddit-alien fa-2x"></a>
</div>
</div>
</footer>
</html>