forked from jyotiprakashh/RandomQuote_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 1.52 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
<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>Quote api</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<section>
<div id="clock">
<ul>
<li id="date">00</li>
<li id="time">00</li>
</ul>
</div>
</section>
<header>
Quote of the day
</header>
<div class="content">
<div class="quote-area">
<i class="fas fa-quote-left"></i>
<p class="quote">Do Bodmoshi</p>
<i class="fas fa-quote-right"></i>
</div>
<div class="author">
<span>___</span>
<span class="name">Jyoti</span>
</div>
</div>
<div class="buttons">
<div class="features">
<ul>
<li class="sound"><i class="fas fa-volume-up"></i></li>
<li class="copy"><i class="fas fa-copy"></i></li>
</ul>
<button class="btn">New quote</button>
</div>
</div>
</div>
<div id="loader"></div>
<script src="int.js"></script>
</body>
</html>