-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.32 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootswatch/4.4.1/minty/bootstrap.min.css"
crossorigin="anonymous"
/>
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css" />
<title>Random Quote Machine</title>
</head>
<body>
<!-- <nav class="display-3 bg-primary">Random-joke-generator</nav> -->
<div class="container h-100 d-flex align-items-center">
<div class="card mx-auto" style="width: 30rem">
<div class="card-body">
<h2 class="text-center text-primary display-5">
Random Joke Generator
</h2>
<hr />
<h5 class="card-title" id="text"> Fetching Quote</h5>
<h6 class="card-subtitle mb-2 text-secondary" id="author">
Fetching Quote Author
</h6>
<button class="btn btn-primary" id="new-quote">new quote</button>
<button class="btn btn-info" id="tweet"><i class='bx bxl-twitter'></i></i></button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>