-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecondpage.html
More file actions
63 lines (57 loc) · 1.45 KB
/
secondpage.html
File metadata and controls
63 lines (57 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
</title>
</head>
<body>
<header>SIMPLE TABLE</header>
<table border = "1">
<tr>
<th>Tags</th>
<th>USE</th>
</tr>
<tr>
<td><!DOCTYPE></td>
<td>Defines the document type</td>
</tr>
<tr>
<td> <head></td>
<td> Contains metadata/information for the document</td>
</tr>
<tr>
<td> <title></td>
<td> Defines a title for the document</td>
</tr>
<tr>
<td>
<p>
</td>
<td> Defines a paragraph</td>
</tr>
<tr>
<td>
<br>
</td>
<td>Inserts a single line break</td>
</tr>
<tr>
<td> <input></td>
<td>Defines an input control</td>
</tr>
<tr>
<td>
<table>
</td>
<td>
Defines a table
</td>
</tr>
</table>
<br>
<h4>For more html tags/elments you can refer to: <a href="https://www.w3schools.com/tags/ref_byfunc.asp">https://www.w3schools.com/tags/ref_byfunc.asp</a></h4>
</body>
</html>