-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpictureCollage.html
45 lines (45 loc) · 1.17 KB
/
pictureCollage.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
<!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" />
<title>Funny Pictures</title>
</head>
<body>
<section class="navigation">
<a href="aboutMe.html">About the author</a>
<a href="index.html">Other stuff</a>
<a href="survey.html">Build an ice cream cone!</a>
<br>
<br>
</section>
<section class="pet-table"><table>
<thead>
<th>Cats</th>
<th>Dogs</th>
</thead>
<tr>
<th>Type #1</th>
<td>Maine Coon</td>
<td>Labrador Retreiver</td>
</tr>
<tr>
<th>Type #2</Type></th>
<td>British Shorthair</td>
<td><strong>Beagle</strong></td>
</tr>
<tr>
<th>Type #3</th>
<td>American Shorthair</td>
<td>Pug</td>
</tr>
<tfoot>
<th>Conclusion</th>
<td>Whelp... there you go!</td>
<td>There aren't any other types of cats/dogs</td>
</tfoot>
</table>
</section>
</body>
</html>