-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (50 loc) · 1.98 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
60
<!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>Quote Generator</title>
<link rel="icon" type="image/png" href="https://www.google.com/s2/favicons?domain=dev.to&sz=128">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="quote-card-background.css">
</head>
<body>
<!-- Full Background Gif-->
<div class="giphy"></div>
<!-- Spinner / Loader -->
<div class="loader"></div>
<!-- Quote Card-->
<article class="quote_card" data-category="attitude">
<!-- Main Content-->
<div class="quote_main-content">
<!-- Quote -->
<blockquote class="quote_quote" cite="https://jacintodesign.github.io/quotes-api/data/quotes.json">
<!-- Happiness doesn't depend on any external conditions, it is governed by our mental attitude. -->
</blockquote>
<!-- Author -->
<span class="quote_author">
<!-- Dale Carnegie -->
</span>
</div>
<!-- Buttons -->
<div class="quote_buttons-container">
<!-- New Quote -->
<button class="quote_new-quote-btn">New Quote</button>
<!-- Social Media -->
<div class="quote_social-media-buttons-container">
<!-- Twitter -->
<button class="quote_twitter-btn" title="Tweet this!">
<i class="fab fa-twitter"></i>
</button>
<!-- Whats App -->
<button class="quote_whats-app">
<i class="fa-brands fa-whatsapp" title="Share this!"></i>
</button>
</div>
</div>
</article>
<script src="script.js"></script>
</body>
</html>