Skip to content

Commit 757255b

Browse files
committed
feat(simpsons-quotes) : create folder and logic fetch
1 parent 6d5faed commit 757255b

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Simpsons-Quotes/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<link rel="stylesheet" href="style.css">
8+
<title>Simpsons Quotes</title>
9+
</head>
10+
<body>
11+
<h1>Random Simpsons Quotes</h1>
12+
<button id="fetchQuote" onclick="getQuote()">Get a New Quote</button>
13+
<div class="quote-box" id="quoteBox">
14+
<p class="quote" id="quoteText">Click the button to get a quote!</p>
15+
<p class="character" id="characterName"></p>
16+
</div>
17+
</body>
18+
<script src="main.js"></script>
19+
</html>

Simpsons-Quotes/style.css

Whitespace-only changes.

0 commit comments

Comments
 (0)