-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfirst.html
36 lines (36 loc) · 1.22 KB
/
first.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/first/first.css">
<title>First</title>
</head>
<body>
<div id="container">
<section>
<h1>First Animation Challenge</h1>
<div class="text">
<div>
<p>The shortest distance between two points is a <i>straight</i> line! Can you get this blue boi to the bottom right of the box?</p>
<p>Do ONE step at a time, when you've done 1 move onto the next.</p>
</div>
<div>
<ul>To Dos:
<li>Get the Blue Boi to the bottom right of his container</li>
<li>Have the animation end with the box in the bottom right.</li>
<li>I changed my mind! <i>Without changing the html</i> have the box start in the bottom right and end in the top left!</li>
</ul>
</div>
</div>
<div id="links">
<a class="forward" href="second.html"><button>Next</button></a>
</div>
<div class="ani-container">
<div id=item1 class="item"></div>
</div>
</section>
</div>
</body>
</html>