-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css">
<title>Tweet Generator</title>
</head>
<body>
<main class="content">
<h1 class="text-main">Tweet Generator</h1>
<div class="btn-container-1">
<button type="button" class="btn btn-pressed" id="opt-quote" disabled>Quote</button>
<button type="button" class="btn" id="opt-fact">Random Fact</button>
<button type="button" class="btn" id="opt-joke">Joke</button>
</div>
<div class="content-container">
<div class="text-container">
<div class="loader" hidden></div>
<span class="text-quote"></span>
<span class="text-author"></span>
<div class="btn-container-2">
<button class="btn btn-twitter"> <i class="fab fa-twitter" title="Tweet this!"></i></button>
<button class="btn btn-new">New Quote</button>
</div>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>