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 (33 loc) · 1.1 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./index.css" />
<title>Document</title>
</head>
<body>
<div class="container">
<div class="content">
<p class="quote" id="quote">
<i class="fa fa-quote-left" aria-hidden="true"></i> Don't cry because it's over, smile
because it happend.
</p>
<p class="author" id="author"><span>-</span> Dr.Seuss</p>
<div class="content_footer">
<div class="icons">
<i class="fa fa-twitter-square fa-3x" aria-hidden="true"></i>
<i class="fa fa-tumblr-square fa-3x" aria-hidden="true"></i>
</div>
<button class="btn" id="new-quote_btn">New quote</button>
</div>
</div>
<div class="white-footer"></div>
</div>
<script src="./index.js"></script>
</body>
</html>