-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment.html
68 lines (58 loc) · 1.39 KB
/
assignment.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
67
68
<!DOCTYPE html>
<html>
<head>
<title>Class Assignment</title>
</head>
<body>
<h1>Steve Stabile</h1>
<img src="http://www.businessinsider.com/image/4f3433986bb3f7b67a00003c/cute-cat.jpg" alt="a cute cat">
<br>
<a href="https://www.google.com/" target="_blank">its google</a>
<br>
<a href="https://www.google.com/"><b>THIS IS BOLD GOOGLE</b></a>
<br>
<a href="">This link doesn't go anywhere :/</a>
<br>
<ol>
<li>get your bread</li>
<li>put some peanut butter on the bread</li>
<li>put some jelly on the bread</li>
<li>cut in half</li>
</ol>
<ul>
<li>black sabbath</li>
<li>electric wizard</li>
<li>darkthrone</li>
<li>disseciton</li>
<li>immortal</li>
</ul>
<table>
<tr>
<td>Animal Class</td>
<td>Animal Name</td>
</tr>
<tr>
<td>Dog</td>
<td>dogname</td>
</tr>
<tr>
<td>Cat</td>
<td>catname</td>
</tr>
<tr>
<td>Horse</td>
<td>horsename</td>
</tr>
<tr>
<td>Pig</td>
<td>piggy</td>
</tr>
</table>
<ul>
<li><a href="https://www.google.com/"><b>THIS IS BOLD GOOGLE</b></a></li>
<li><a href="https://www.amazon.com/"><b>THIS IS BOLD AMAZON</b></a></li>
<li><a href="https://www.youtube.com/"><b>THIS IS BOLD YOUTUBE</b></a></li>
</ul>
<iframe width="640" height="360" src="https://www.youtube.com/embed/-bqHI5_uo3w" frameborder="0" allowfullscreen></iframe>
</body>
</html>