-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirstPage.html
94 lines (67 loc) · 1.94 KB
/
FirstPage.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<!-- metadata goes here -->
<title>First Page | First Website</title>
</head>
<body>
<!-- content goes in the body -->
<!-- <h1>My First Website!!!</h1>
<h2>This is another tag</h2>
<h6>This is another tag!!!</h6>
<img src="http://www.101dogbreeds.com/wp-content/uploads/2016/01/Pit-Bull-Beagle-Mix-Pictures.jpg" alt="Puppy">
<a href="https://www.google.com" target="blank">Click me to go to Google</a>
<a href="pagetwo.html">GO TO PAGE TWOl</a>
<p>
<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. <em>Lorem Ipsum</em> has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<p>
asdkfjkasjdf;kadsfkjaskdfja;sdfaksdfjkasjdfasfdklj
asdkfjkasjdf;kadsfkjaskdfja;sdfaksdfjkasjdfasfdklj
asdkfjkasjdf;kadsfkjaskdfja;sdfaksdfjkasjdfasfdklj
asdkfjkasjdf;kadsfkjaskdfja;sdfaksdfjkasjdfasfdklj
asdkfjkasjdf;kadsfkjaskdfja;sdfaksdfjkasjdfasfdklj
,
</p>
<ol>
<li>Red</li>
<li>Orange</li>
<li>Yellow</li>
<ul>
<li>Sunflower</li>
<li>Banana
<ol>
<li> Frozen Banana</li>
<li> Non-Frozen Banana</li>
</ol>
</li>
</ul>
</li>
</ol>
<ul>
<li><strong>Red</strong></li>
<li>Orange</li>
<li>Yellow
</ul> -->
<!-- Name Age
================
Rusty 2
Wyatt 13-->
<table>
<thead><tr>
<td><strong>Name</strong></td>
<td><strong>Age</strong></td>
<td><strong>Breed</strong></td>
</tr></thead>
<tbody><tr>
<td>Rusty</td>
<td>2</td>
<td>Mutt</td>
</tr><tr>
<td>Wyatt</td>
<td>13</td>
<td>Golden</td>
</tr></tbody>
</table>
</body>
</html>