-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
56 lines (55 loc) · 2.23 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dogs</title>
</head>
<body>
<h1>
<a href="form.html">FORM</a>
</h1>
<h1>Rex</h1>
<img width="300px" src="https://i.imgur.com/tpXqSrj.jpg">
<p>This is my dog rex</p>
<h3>Sandy</h3>
<img width="300px" src="https://www.cesarsway.com/sites/newcesarsway/files/styles/large_article_preview/public/Common-dog-behaviors-explained.jpg?itok=FSzwbBoi">
<h3>T-bone</h3>
<img width="300px" src="https://www.cesarsway.com/sites/newcesarsway/files/styles/large_article_preview/public/Shake-shiver-and-tremble-Why-dogs-do-it.jpg?itok=yvOUgQeL">
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td>
<h3>Dog 1</h3>
<p>Hello</p>
<img width="300px" src="http://r.ddmcdn.com/w_830/s_f/o_1/cx_0/cy_220/cw_1255/ch_1255/APL/uploads/2014/11/dog-breed-selector-australian-shepherd.jpg"></td>
<td>
<h3>Dog 2</h3>
<p>Hello</p>
<img width="300px" src="https://s.graphiq.com/sites/default/files/stories/t4/15_Tiniest_Dog_Breeds_1718_3083.jpg"></td>
</tr>
<tr>
<td>
<h3>Dog 3</h3>
<p>Hello</p>
<img width="300px" src="http://i.huffpost.com/gen/3754046/original.jpg"></td>
<td>
<h3>Dog 4</h3>
<p>Hello</p>
<img width="300px" src="https://s3.graphiq.com/sites/default/files/stories/t2/The_16_Dogs_That_Won8217t_Make_You_Sneeze_2060_2848.jpg"></td>
</tr>
<tr>
<td>
<h3>Dog 5</h3>
<p>Hello</p>
<img width="300px" src="https://upload.wikimedia.org/wikipedia/commons/e/ec/Terrier_mixed-breed_dog.jpg"></td>
<td>
<h3>Dog 6</h3>
<p>Hello</p>
<img width="300px" src="https://i.imgur.com/tpXqSrj.jpg"></td>
</tr>
</table>
</body>
</html>