-
Notifications
You must be signed in to change notification settings - Fork 0
/
myWebpage.html
63 lines (59 loc) · 1.1 KB
/
myWebpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Simple website</title>
</head>
<body class="" id="" style="background-color: grey; font-style: Calibri;">
<h1>My webpage</h1>
<a href="google.com">sample link tag</a>
<img src="" width="" height="" alt=""></img>
<br>
<br>
<hr>
<input type="text">
<input type="password">
<input type="radio">
<input type="range">
<input type="checkbox">
<input type="email">
<input Stype="button" value="ubmit button">
<button>Button</button>
<hr>
<h6>Phone Brands</h6>
<ul>
<li>Samsung</li>
<li>Motorola</li>
<li>IPhone</li>
<li>Pinoy mobile</li>
</ul>
<br>
<!-- <ol>
<li>Samsung</li>
<li>Motorola</li>
<li>IPhone</li>
<li>Pinoy mobile</li>
</ol> -->
<!-- note: message -->
<hr>
<table border="1">
<thead>
<tr>
<th>#</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Juan</td>
<td>Cruz</td>
<td>CPSU</td>
</tr>
</tbody>
</table>
</body>
</html>