-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.4 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
<!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">
<title>Random Quotes</title>
<script src="https://kit.fontawesome.com/954a6fbf4e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script src="quote.js" defer></script>
</head>
<body>
<main>
<div class="heading"><h2>Quote of the Day</h2></div>
<div class="quote">
<!-- <i class="fas fa-quote-left "></i> -->
<p class="quote_line">
<i class="fa fa-quote-left" style="font-size:17px"></i>
Every great dream begins with a dreamer. Always remember, you have within you the strength, the patience, and the passion to reach for the stars to change the world.
<i class="fa fa-quote-right" style="font-size:17px"></i>
</p>
</div>
<div class="quoteby">--Harriet Tubman</div>
<div class="border">
<div class="emoji">
<i class="emojis fas fa-volume-up fa-1.5x"></i>
<i class="emojis fas fa-copy"></i>
<i class="emojis fab fa-facebook"></i>
</div>
<div class="btn">
<button>New Quote</button>
</div>
</div>
</main>
</body>
</html>