-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 1.54 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 1.54 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
<!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>columns</title>
</head>
<body bgcolor="orange">
<h1>
<center ><h1>"tabbles,columns,rows practice </h1></center>
<table border="" style="background-color: yellow;">
<tr>
<th bgcolor="" scope="colgroup">
TIMINGS</th>
<th style="border: 2px solid; background-color: darkblue;">9am</th>
<th style="border: 2px solid;">10am</th>
<th style="border: 2px solid;">11am</th>
<th style="border: 2px solid;">12am</th>
</tr>
<tr>
<th style="border: 2px solid;" >monday</th>
<th colspan style="border: 2px solid;"="1">geogrphy</th>
<th style="background-color: rgb(35, 35, 122);">math</th>
. <th>art</th>
. <th>art</th>
</tr>
<tr>
<th style="border: 2px solid;">tuesday</th>
<th colspan="2" rowspan="2" >gym</th>
<th colspan="2" rowspan="2" style="background-color: darkblue;">gym</th>
</tr>
<tr style="border: 2px;px;">
<th>wednesday</th>
</tr>
<tr>
<th style="background-color: blueviolet;">thurday</th>
<th colspan="2">home work</th>
<th>home work</th>
<th>class work</th>
</tr>
</table>
</h1>
<h1>
<marquee behavior="" direction="right">my columns practice</marquee>
</h1>
</body>
</html>