Skip to content

Commit 6a6b2c9

Browse files
committed
update html structure for quote generator and add css link
1 parent e892ee8 commit 6a6b2c9

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

Sprint-3/quote-generator/index.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Quote generator app</title>
7+
<link rel="stylesheet" href="style.css" />
78
<script defer src="quotes.js"></script>
89
</head>
10+
911
<body>
10-
<h1>Quote Generator</h1>
11-
<p id="quote"></p>
12-
<p id="author"></p>
13-
<button type="button" id="new-quote">New quote</button>
12+
<main>
13+
<h1>Quote Generator</h1>
14+
15+
<p id="quote"></p>
16+
<p id="author"></p>
17+
18+
<button type="button" id="new-quote">New quote</button>
19+
</main>
1420
</body>
1521
</html>

0 commit comments

Comments
 (0)