-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (50 loc) · 1.41 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Do Now</title>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<!-- 1. Write an <h1> tag that says "Sloths!" -->
<h1>Sloths!</h1>
<!-- 2. Write a <p> tag that says "Sloths are the slowest animal in the world. Womp, womp." -->
<p>Sloths are the slowest animal in the world. Womp, womp.</p>
<!-- 3. Finish early? Take a look at the two tags below. What do you think they do?
How are they different other tags? -->
<a href="https://www.youtube.com/watch?v=DpV4k3Edr-I">Watch a video of sloths here 🦥</a>
<img src="https://c402277.ssl.cf1.rackcdn.com/photos/14785/images/story_full_width/shutterstock_532108075.jpg?1512507049">
</body>
</html>
<!-- The code below styles the page. DO NOT EDIT. -->
<style>
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background: #ddd;
color: black;
}
img {
width: 250px;
}
body {
background-color: lightgreen;
}
h1 {
color: #ffff;
}
</style>