forked from chilah/quotebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 848 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>QuoteBox</title>
<link href="https://fonts.googleapis.com/css?family=Pacifico|Permanent+Marker&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main">
<h1> QuoteBox </h1>
<hr>
<div class="quotebox">
<div clas="quote-body" id="quote-body"> </div>
<div id="quote-speaker"> </div>
</div>
<button id="inspireme">Inspire Me!</button>
<br><br>
<small>🚀 Made By PALASH 👻 with <a href="https://github.com/bauripalash/quotebox/graphs/contributors"> Contributors ❤️️ </a></small>
</div>
<script src="script.js"></script>
</body>
</html>