-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="container">
<div>
<p class="heading">Quote of the Day</p>
</div>
<div class="topics">
<button class="tags active">any</button>
<button data-top="technology" class="tags">technology</button>
<button data-top="famous-quotes" class="tags">famous quotes</button>
<button data-top="history" class="tags">history</button>
<button data-top="civil-rights" class="tags">civil rights</button>
</div>
<div class="quote_block">
<div class="quote">
<i
class="fas fa-quote-left"
style="align-self: flex-start; margin-top: -4px; font-size: 22px"
></i>
<p></p>
<i
class="fas fa-quote-right"
style="align-self: flex-end; margin-bottom: -4px; font-size: 22px"
></i>
</div>
<p class="quotemaster"></p>
</div>
<div class="footer">
<ul class="icons">
<li><i class="fas fa-volume-up"> </i></li>
<li><i class="fas fa-copy copy"> </i></li>
<li><i class="fa-brands fa-twitter"> </i></li>
</ul>
<button class="btn">new quote</button>
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/js/all.js"
integrity="sha512-Ktf+fv0N8ON+ALPwyuXP9d8usxLqqPL5Ox9EHlqxehMM+h1wIU/AeVWFJwVGGFMddw/67P+KGFvFDhZofz2YEg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>