-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst work.html
More file actions
54 lines (48 loc) · 1.29 KB
/
first work.html
File metadata and controls
54 lines (48 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<style>
table,th,td{
border: 1px solid black;
border-collapse:collapse;
justify-content:space-between;
}
</style>
</head>
<body>
<h1>
this is the very first work am trying on my own
</h1>
<p>i want to be in position to creat web papages by the end of this couse i hope to get all the tricks needed to produce good work</p>
<tr>
<table>
<th>names</th>
<th>email addresses</th>
</tr>
<tr>
<td>wilson</td>
<td>wilso@gmail.com</td><br>
</tr>
<tr>
<td>edith</td>
<td>edith@gmail.com</td><br>
</tr>
<tr>
<td>emmanuel</td>
<td>emmanuel@gmail.com</td><br>
</tr>
<tr>
<td>bendicto</td><br>
<td>bendicto@gmail.com</td><br>
</tr>
<tr>
<td> reachel</td><br>
<td>reachel@gmail.com</td><br>
</tr>
<tr>
<td>emily</td><br>
<td>emily@gmail.com</td><br>
</tr>
</table>
</body>
</html>