-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.09 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Quote Generator | Alok Yadav</title>
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="quote-box">
<header>Quote of the Day</header>
<div class="quote">
<i class='bx bxs-quote-left'></i>
<p></p>
<i class='bx bxs-quote-right'></i>
</div>
<div class="author">
<span>__</span>
<p></p>
</div>
<div class="buttons">
<div class="links">
<i class='bx bx-volume-full' id="sound"></i>
<i class='bx bxs-copy' id="copy"></i>
<i class='bx bxl-twitter' id="twitter" ></i>
</div>
<p class="error"></p>
<button class="generate-btn">Inspire Me!</button>
</div>
</div>
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>
<script src="script.js"></script>
</body>
</html>