-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
20 lines (20 loc) · 830 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Donald Trump Quotes Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<p><img alt="Donald Trump Thumbs Up" src=https://cdn.theatlantic.com/assets/media/img/mt/2016/09/RTX1GZCO/lead_720_405.jpg?mod=1533691850></p>
<section class= "quotes">
<blockquote class="quote-text"></blockquote>
</section>
<section>
<button type="button" class="new-quote button">More Donald</button> <!--'class' attribute is for 1)applying style with CSS .className{}2)select elements with JavaScript querySelector('.className') -->
</section>
</main>
<script src='main.js'></script><!--make sure that the javascript has everything that html loaded-->
</body>
</html>