-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (63 loc) · 1.89 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My page</title>
<link rel="favicon" href="favicon.ico">
</head>
<body>
<h1>Personal Website</h1>
<h2>Links</h2>
<div class="menu">
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="media.html">Media</a>
<a href="table.html">Table Layout</a>
</div>
<p><b>Name:</b> Ikupolati Tobi</p>
<p><b>Gender:</b> Male</p>
<p><b>Occupation:</b> Web developer</p>
<p style="margin-left: 300px;"><b>Names of different people</b></p>
<table border="1" cellspacing="8px" style="background-color: yellow; width: 750px;height: 162px; " >
<tr>
<th>Name </th>
<th>Gender </th>
<th>Age </th>
<th>Address </th>
<th>Occupation </th>
</tr>
<tr>
<td>John Musa</td>
<td>Male</td>
<td>28</td>
<td>No 31 Gwari avenue</td>
<td>Web developer</td>
</tr>
<tr>
<td>John Musa</td>
<td>Male</td>
<td>28</td>
<td>No 31 Gwari avenue</td>
<td>Web developer</td>
</tr>
<tr>
<td>John Musa</td>
<td>Male</td>
<td>28</td>
<td>No 31 Gwari avenue</td>
<td>Web developer</td>
</tr>
<tr>
<td>John Musa</td>
<td>Male</td>
<td>28</td>
<td>No 31 Gwari avenue</td>
<td>Web developer</td>
</tr>
</table>
<h2>Few Images</h2>
<hr>
<img src="asig2.png" alt="catoon"> <img src="asig22.png" alt=""> <img src="asig222.png" alt="">
</body>
</html>