-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
201 lines (145 loc) · 5.36 KB
/
index.html
File metadata and controls
201 lines (145 loc) · 5.36 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
/* body{
background-color: red;
} */
</style>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
Text
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h1 id="topHeading">Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>heading 6</h6>
<!-- the b tag stands for bold -->
<b>Bold</b>
<i>Italics</i>
<br/>
<u>Underline</u>
22<sup>nd</sup>
H<sub>2</sub>0
<hr/>
I had the <strong>Best</strong> day ever
<em>dgfdg</em>
<br/>
<blockquote>
I had a Dream
</blockquote>
<p>Martin Luthor said <q cite="">I had a dream</q></p>
<abbr title="Doctor">Dr</abbr> John
I got this from <cite>www.books.com</cite>
<dfn>Definition</dfn>
<address class="">
Level 2 Bunny st
Train station
</address>
<p>This is the <del>worst</del> <ins>Best</ins> day ever</p>
<p>The original price was <s>$900</s> but it is now $500</p>
Lists
<ul>
<li class="redItem">Item 1</li>
<li>Item 2</li>
<li class="redItem">Item 3</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ol>
<li>Chop the Food</li>
<li>Cook the Pasta</li>
<li>Put these items in the pot</li>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<li>now cook it</li>
</ol>
Links<br/>
<a href="about.html">Click here for about page </a><br/>
<a href="about/about.html">Click here for about page </a><br/>
<a href="../about.html">Click here for about page </a><br/>
<a href="https://www.stuff.co.nz/" target="_blank">Click here to go to stuff</a>
<a href="#topHeading">Back to Top</a>
<a href="about.html#footer">Back to The footer in my about</a><br/>
Image<br/>
<img src="images/image1.jpg" alt="parot on a stick" width="300"/>
<img src="https://cdn.pixabay.com/photo/2015/02/24/15/41/dog-647528__340.jpg" alt="">
<br/>
Tables<br/>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Johnfsadfdsfdsfdsfasfdsfs</td>
<td>45</td>
</tr>
<tr>
<td>Sarah</td>
<td>30</td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td>75</td>
</tr>
</tfoot>
</table>
<br/>
Forms
<form action="index.html" method="post">
<input type="text" name="firstName" value="" placeholder="First Name"/>
<input type="button" name="" value=""/>
<input type="number" name="" value=""/>
<input type="password" name="" value=""/>
<input type="file" name="" value=""/>
<input type="hidden" name="" value=""/>
<input type="color" name="" value=""/>
<input type="date" name="" value=""/>
<input type="time" name="" value="">
<input type="datetime-local" name="" value="">
<input type="email" name="" value=""><br/>
<input type="radio" name="gender" value="male">Male<br/>
<input type="radio" name="gender" value="female">Female<br/>
<input type="radio" name="gender" value="other">Other<br/>
<input type="checkbox" name="subscribe" value="yes">Do you want to subscribe<br/>
<textarea name="message" rows="10" cols="80" placeholder="Enter your message"></textarea>
<select class="" name="optionValue">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<button type="submit" name="button">Submit Form</button>
<input type="submit" name="" value="Submit Form">
</form>
<!--
<header></header>
<nav></nav>
<footer></footer>
<article></article>
<section></section>
<aside></aside> -->
<div class="block">
</div>
<br>
<div class="block boxSizing">
</div>
</body>
</html>