-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (45 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:type" content="website" />
<meta property="og:title" content="Your Website Title" />
<meta property="og:description" content="Your description" />
<meta property="og:image" content="https://www.your-domain.com/path/image.jpg" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<title>Random Quote Generator</title>
</head>
<body>
<div class="container">
<h1>Random Quote Generator</h1>
<div class="card">
<div class="card-header">
Bon Jan Pwovèb Kreyòl
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p id="quote"></p>
<footer class="blockquote-footer"></footer>
</blockquote>
<div class="loader loading"></div>
</div>
</div>
<button class="btn-primary" id="new-quote">Nouvo Pwovèb</button>
<div class="socialMedia">
<h3>Pataje sou:</h3>
<ul>
<li><button class="socialButton facebook btn-primary"><i class="fab fa-facebook-square"></i> Facebook</button></li>
<li><button class="socialButton twitter btn-primary"><i class="fab fa-twitter-square"></i> Twitter</button></li>
</ul>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="./js/app.js"></script>
</body>
</html>