-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- css stylesheet link-->
<link rel="stylesheet" href="style.css">
<!-- Global Font Links-->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<title>motivational quotes</title>
</head>
<body>
<!--.button-area: shortcut for a class-->
<!-- button#new-quote: shortcut for an id-->
<!-- span.quote: shortcut for a class-->
<!-- Project one : quote Generator-->
<div class="container">
<div class="header">
<h2> JavaScript Quote Generator</h2>
</div>
<div class="main-content">
<div class="text-area">
<span class="quote">"The only way to do great work is to love what you do."
</span>
</div>
<div class="person">Steve Jobs</div>
<div class="button-area">
<button id="new-quote">New quote</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>