-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.html
More file actions
88 lines (87 loc) · 2.33 KB
/
task1.html
File metadata and controls
88 lines (87 loc) · 2.33 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
86
87
88
<html>
<head>
<style>
table,td,th,tr{
border:2px solid blue;
border-collapse: collapse;
}
</style>
</head>
<body>
<h1>nested list</h1>
<ol type="I">
<li>background skills</li>
<ol type="A">
<li>unix commands</li>
<li>vim test editors</li>
</ol>
<li>html</li>
<ol type="A">
<li>minimal page</li>
<li>heading</li>
<li>elements</li>
<li>list</li>
<ol type="i">
<li>unordered</li>
<li>orderd</li>
<li>definition</li>
<li>nested</li>
</ol>
<li>links</li>
<ol type="i">
<li>absolute</li>
<li>relative</li>
</ol>
<li>image</li>
</ol>
<li>css</li>
<ol type="A">
<li>antony</li>
<li>basic selectors</li>
<ol type="i">
<li>elements</li>
<li>class</li>
<li>id</li>
<li>group</li>
</ol>
<li>the dorm</li>
<li>advanced selectors</li>
<li>box model</li>
</ol>
<li>programming model</li>
<ol type="A">
<li>python</li>
<li>javascript</li>
</ol>
<li>database
<ol type="A">
<li>flat file</li>
<li>relation</li>
</ol>
</li>
</ol>
<table>
<tr>
<td rowspan="2"></td>
<th colspan="2">Pa</th>
<th rowspan="2">yogi</th>
</tr>
<tr>
<td>20</td>
<td>30</td>
</tr>
<tr>
<td>20</td>
<td>30</td>
<td>20</td>
<td>30</td>
</tr>
<tr>
<td>20</td>
<td>30</td>
<td>20</td>
<td>30</td>
</tr>
</table>
</body>
</html>