We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5faed commit 757255bCopy full SHA for 757255b
Simpsons-Quotes/index.html
@@ -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
0 commit comments