-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
85 lines (84 loc) · 2.01 KB
/
Copy pathsample.html
File metadata and controls
85 lines (84 loc) · 2.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample</title>
<style>
table{
border-collapse: collapse;
border: 2px solid ;
letter-spacing: 1px;
}
td,th{
border : 1px solid black;
}
td{
text-align: center;
}
</style>
</head>
<body>
<h6>Mozilla is cool</h6>
<img src = "https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.mozilla.org%2Fen-US%2Ffirefox%2Fnew%2F&psig=AOvVaw2fjfGVlMFir4wGa_7ItnFZ&ust=1673381701630000&source=images&cd=vfe&ved=0CBAQjRxqFwoTCPix9-Wmu_wCFQAAAAAdAAAAABAD" alt = "this is sample image">
</img>
<p>
At Mozilla, we're a global community of :
</p>
<u1>
<li>Technologist</li>
<li>Thinkers</li>
<li>Developers</li>
</u1>
<p>
working together
</p>
<p>
for more information visit:
</p>
<a href = "https://www.mozilla.org/">Mozilla</a>
<h1>Timetable for Language</h1>
<table>
<colgroup>
<col span = "1">
<col style = "background-color: aqua">
<col span = "2">
<col style = "background-color: aqua">
<col style = "background-color: yellow">
</colgroup>
<tr>
<th > </th>
<th >Monday</th>
<th >Tuesday</th>
<th >Wednesday</th>
<th >Thrusday</th>
<th >Friday</th>
</tr>
<tr>
<th>1st period</th>
<td>English</td>
<td> </td>
<td> </td>
<td> </td>
<td>Dutch</td>
</tr>
<tr>
<th>2nd period</th>
<td>English</td>
<td>English</td>
<td> </td>
<td>German</td>
<td>Dutch</td>
</tr>
<tr>
<th>3rd period</th>
<td> </td>
<td> </td>
<td>German</td>
<td>German</td>
<td>Dutch</td>
</tr>
</table>
</body>
</html>