-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
100 lines (73 loc) · 1.71 KB
/
tables.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="view point"
content="with=device,"
>
<title>document</title>
<!-- px is the unit of measurement-->
<!-- borders can be dotted, solid or dashed-->
<style>
table,tr,th,td {
border: 3px solid black;
border-collapse:collapse;}
th{color: red;}
td{color: blue;}
</style>
</head>
<body>
<button><a id="1" href="list.html"> home</a></button>
<a href="image.jpg"> image</a>
<a href="image.html"> Text</a>
<a href="https://www.instagram.com/"> instagram</a>
<a href="https://breatherleatherke.com/"> breather</a>
<!--to creat a table tags-->
<!--tables are made of rows and columns-->
<!--tr represent table rows-->
<!--td represent table columns-->
<!--css; cascaded style sheet-->
<!--its possible to use an 'a' tag within a paragraph-->
<!--a tag is used to link files-->
<!--a tag also links websites by copying the url and pasting inside the tag-->
<!--tfoot tag is used to be used at the bottom of the table-->
<a>
<a href="list.html"> list file</a>
<a href="index.html"> index file</a>
<a href="image.jpg"> image</a>
<a href="image.html"> image</a><br><br><br>
</a>
<table>
<tr>
<th>company</th>
<th>contact</th>
<th>country</th>
</tr>
<tr>
<td>camp1 </td>
<td>074324123</td>
<td>Kenya</td>
</tr>
<tr>
<td> camp2</td>
<td>073242135</td>
<td> Congo</td>
</tr>
<tr>
<td>camp4</td>
<td>0974858449</td>
<td>Togo</td>
</tr>
<tr>
<td>camp5</td>
<td>099882828</td>
<td>Niger</td>
</tr>
<tr>
<td>camp 6</td>
<td>0784388583</td>
<td>Dubai</td>
</tr>
</table>
</body>
</html>