-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML_3rd_assignment.html
63 lines (61 loc) · 993 Bytes
/
HTML_3rd_assignment.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>
<head>
<title>Third question</title>
<style>
table, th,td{
border: 1px solid lightgrey;
border-collapse: collapse;
}
th, td{
padding: 15px;
}
table tr:nth-child(even) {
background-color: #eee;
}
table tr:nth-child(odd) {
background-color: #fff;
}
table{
width: 70%
}
</style>
</head>
<body>
<b><h1>TABLE</h1></b>
<TABLE>
<thread>
<th>Comapany</th>
<th>Contacts</th>
<th>Country</th>
</thread>
<tbody>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro commercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td>Emst Handel</td>
<td>Ronald Mendel</td>
<td>Austria</td>
</tr>
<tr>
<td>Laughing Bacchus Winecellers</td>
<td>Yoshi Tannamuri</td>
<td>Canada</td>
</tr>
<tr>
<td>Magazzini Allimentari Riuniti</td>
<td>Giovanni Rovelli</td>
<td>Italy</td>
</tr>
</tbody>
</TABLE>
</body>
</html>