forked from victorlhlee/Prep-JS-DOM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (22 loc) · 1.01 KB
/
index.html
File metadata and controls
33 lines (22 loc) · 1.01 KB
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
26
27
28
29
30
31
32
33
<!DOCTYPE html> <!-- tells a browswer which version of HTML the page is using, in this case HTML5 -->
<html lang="en">
<head>
<meta charset="UTF-8"> <!-- Meta elements are typically used to specify page description, keywords for search engines, author of the document, last modified, and other metadata. -->
<title>PREP-DOM</title>
<link rel="stylesheet" href="css/styles.css">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<script src="js/app.js"></script>
</head>
<body>
<img src="assets/cats.jpg" alt="catisland" style="width: 900px; height:500px">
<div id="container"></div>
<h2><a href="https://www.youtube.com/watch?v=agi4geKb8v8" target="_blank">"Only when we are no longer afraid do we begin to live."</a></h2>
<h1>Tacocat's 2016 challenges:</h1>
<div id="bigBox">
</div>
<h1>Tacocat's Bucket List</h1>
<div id="buckets">
</div>
<img src="assets/Taco-Cat.jpg" alt="catisland" style="width: 350px; height:350px">
</body>
</html>