-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 891 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quote</title>
<link rel="stylesheet" href="style.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container quote">
<div class="box">
<i class="fa fa-quote-right myleftquote " aria-hidden="true"></i>
<div class="text">
<i class="fa fa-quote-left myrightquote " aria-hidden="true"></i>
<div>
<h1>Coding quote of the day</h1>
<p class="qstring">You cannot change anyone but yourself. Always hope for the best, but keep living your life no matter what.</p>
<p class="qauthor">- Anonymous</p>
</div>
</div>
</div>
<div><button class="generate">Get new</button></div>
</div>
<script src="main.js"></script>
</body>
</html>