forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 900 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 900 Bytes
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
<!-- Your code goes in here -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css" >
<title>My quotes</title>
</head>
<body>
<div class="container">
<span></span>
<h1 id="quote">your quote is going to be showen here </h1>
<span id="author">Author Name</span>
<div class="social-links">
<a href="https://twitter.com/"><ion-icon name="logo-twitter"></ion-icon></a>
<a href="https://www.tumblr.com/"><ion-icon name="logo-tumblr"></ion-icon></a>
</div>
<button id="button" onclick="newQuote()">new quote</button>
</div>
<div class="white-space"></div>
<script src="https://unpkg.com/ionicons@5.2.3/dist/ionicons.js"></script>
<script src="index.js"></script>
</body>
</html>