forked from Rasheek16/html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
157 lines (140 loc) · 4.73 KB
/
index.html
File metadata and controls
157 lines (140 loc) · 4.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basic html page</title>
</head>
<body>
<!-- <h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Veniam ut iste voluptatum voluptatibus accusamus molestiae,
nam ullam! Non, cum vero nam repellat ullam harum soluta aut. Illo hic accusamus magni.</p>
<b>Bold</b>
<br>
<i>Italic</i>
<p>E=MC<sup>2</sup></p>
<p>CO<sub>2</sub></p>
<hr/>
<p><strong>Beware:</strong>Pick Pockets operate in this area</p>
<p>This toy has many small pieces and is not <strong>not suitable for children under five years old</strong></p>
<p>I think <i>Ivy was first</i></p>
<p>I think <em>Ivy was first</em></p> -->
<!-- <blockquote cite="https://en.wikipedia.org/wiki/Winnie-the-Pooh">
<p>Did you ever stop to think and forget to start again</p>
</blockquote>
<p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theoretical physicist</p>
<p><acronym title="National Aeronautical and Space Admin">NASA</acronym> do some crazy stuff</p>
-->
<!-- <p><cite>A brief history of time</cite> by Stephen Hawking</p>
<p>A <dfn>Black Hole</dfn> is a region of space from which nothing can escape</p>
<address>
<p>ersdtfghjb</p>
</address> -->
<!-- <p>it was the <del>worst</del> <ins>best</ins> deal</p> -->
<!-- <p><s>this is not relevant</s></p> -->
<!-- <ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<dl>
<dt>item 1</dt>
<dd>def for item 1</dd>
<dt>item 2</dt>
<dd>def for item 2</dd>
<dt>item 3</dt>
<dd>def for item 3</dd>
<dt>item 4</dt>
<dd>def for item 4</dd>
</dl> -->
<!-- <ul>
<li>Item 1</li>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul> -->
<!-- <a href="https://google.com">google</a>
<a href="mailto:xyz@gmail.com">mail me</a>
<a href="https://google.com" target="_blank">New window</a> -->
<!-- <img src="./html.png" alt="html image" title="basic html image"> -->
<!-- <figure><img src="./html.png" alt="html image" title="basic html image"></figure>
<figcaption>Basic html image</figcaption> -->
<!-- <table>
<tr>
<th></th>
<th scope="col">Saturday</th>
<th scope="col">Sunday</th>
<td>12345</td>
</tr>
<tr>
<th scope="row">Tickets sold:</th>
<td rowspan="1">120</td>
<td>130</td>
</tr>
<tr>
<th scope="row">Sales</th>
<td>$600</td>
<td>$800</td>
</tr>
</table>
-->
<!-- <form action="" method="post"> -->
<!-- <p>
<input type="text" size="" maxlength="" name="username">
</p> -->
<!-- <p>question?</p>
<textarea input="text" name="answer" cols="40" rows="4" placeholder="Enter your answer"></textarea> -->
<!-- <input type="radio" name="xyz" value="a"/>A
<input type="radio" name="xyz" value="c">
<input type="radio" name="xyz" value="b"> -->
<!-- <input type="checkbox" name="xyz" value="c" checked="checked"> -->
<!-- <select name="devices">
<option value="ipod">ipod</option>
<option value="radio">radio</option>
<option value="computer">computer</option>
</select>
<br/> -->
<!-- <select name="devices" multiple="multiple">
<option value="ipod" selected="selected">ipod</option>
<option value="radio" selected="selected">radio</option>
<option value="computer">computer</option>
</select> -->
<!-- <input type="file">
<input type="submit">
<input type="image" src="html.png"> -->
<!-- <button type="button">
hello
</button> -->
<!-- <label for="username">name</label>
<input type="text" id="usernname" name="name" required="required">
<button type="submit">click</button>
<input type="datetime-local"> -->
<!-- <span class="">
<input id="" type="email" name="email" required="required">
<input type="url" name="url" required="required">
<input type="search" placeholder="enter keyword">
<button type="submit">click</button>
</span>
-->
<!-- </form> -->
</body>
</html>