-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 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" />
<link rel="stylesheet" href="css/style.css" />
<title>Frases de Hipolito Mejia Aleatorias</title>
</head>
<body>
<div class="app">
<header>Frases de Hipolito Mejia Aleatorias</header>
<section class="quotes">
<div class="quote-text" id="js-quote-text"></div>
</section>
<div id="js-spinner" class="spinner hidden">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
<section class="controls">
<button type="button" id="js-new-quote" class="new-quote button">
Generate a new quote
</button>
<a class="twitter button" id="js-tweet" target="_blank" rel="noopener noreferrer">Tweet it!</a>
</section>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>