forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.16 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.16 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
<!-- Your code goes in here -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<script src="https://kit.fontawesome.com/818ee812ba.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div id="container">
<div id="sub-container">
<div id="quote-author">
<div id="generator">
<i class="fas fa-quote-left"></i>
<div id="output">
Don't Cry because it's over, smile because it happened "
</div>
</div>
<div id="author">- Dr.Seus</div>
</div>
<div id="next-icons">
<div id="socialMedia">
<div>
<a href="https://twitter.com/explore"><i class="fab fa-twitter"></i> </a>
</div>
<div>
<a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i> </a>
</div>
</div>
<div id="quote-btn">New Quote</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>