-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab3_2.html
More file actions
75 lines (60 loc) · 1010 Bytes
/
lab3_2.html
File metadata and controls
75 lines (60 loc) · 1010 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
h2{
text-align: center;
}
table.one{
margin-left: 500px;
border:1.5px solid black;
table-layout: auto;
}
th, td{
border: 1.5px solid black;
padding: 8px;
text-align: left;
}
</style>
</head>
<body>
<h2>Basic Course</h2>
<table class="one">
<tr>
<th>Sr.No</th>
<th>Course Name</th>
<th>Fees</th>
<th>Duration</th>
<th>Eligibility</th>
</tr>
<tr>
<td>1</td>
<td>CCC-Course on Computer Concept</td>
<td>2000</td>
<td>3 Months</td>
<td>10<sup>th</sup></td>
</tr>
<tr>
<td>2</td>
<td>CCA-Course on Computer Application</td>
<td>2000</td>
<td>3 Months</td>
<td>10<sup>th</sup></td>
</tr>
<tr>
<td>3</td>
<td>Tally</td>
<td>3000</td>
<td>3 Months</td>
<td>10<sup>th</sup></td>
</tr>
<tr>
<td>4</td>
<td>0 Level</td>
<td>15,000</td>
<td>1 Year</td>
<td>12<sup>th</sup></td>
</tr>
</table>
</body>
</html>