-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
37 lines (33 loc) · 954 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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/jpeg" href="images/logo.jpg" />
<title>Quotes Wheel</title>
</head>
<body>
<h1 style="color: brown; text-decoration: underline;">INSPIRATIONAL QUOTES</h1>
<div class="container">
<h1 id="quote">Loading...</h1>
<p id="author"></p>
</div>
<div class="contribute-section">
<p>
Want to contribute?
<a href="https://github.com/MrAshwin2142/Quotes-Wheel" target="_blank"
>Contribute here!</a
>
</p>
<p>
More about me :
<a href="https://ashwin-portfolioo.netlify.app/#" target="_blank"
>Ashwin Dhangar</a
>
</p>
</div>
<script src="quotes.js"></script>
<script src="main.js"></script>
</body>
</html>