-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss1.html
69 lines (67 loc) · 2.36 KB
/
css1.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
64
65
66
67
68
69
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task-6</title>
<style>
#first{
border-radius: 10px;
margin-left: auto;
margin-right: auto;
}
.main{
border-radius: 16px;
}
#next{
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
.below{
width: 80px;
height: 40px;
border-color: rgba(132, 182, 25, 0.669);
border-width: 3px;
}
</style>
</head>
<body>
<table id="first" border="1" cellpadding="2" cellspacing="1" bordercolor="black" bgcolor="skyblue">
<tbody><tr text-align="centre">
<th class="main" width="300px"><b>First Name</b></th>
<th class="main" width="250px"><b>Last Name</b></th>
<th class="main" width="150px"><b>Age</b></th>
</tr>
<tr>
<td class="main">Jill</td>
<td class="main">Smith</td>
<td class="main">50</td>
</tr>
<tr>
<td class="main">Eve</td>
<td class="main">Jackson</td>
<td class="main">94</td>
</tr>
<tr>
<td class="main">John</td>
<td class="main">Doe</td>
<td class="main">80</td>
</tr>
</tbody></table>
<table id="next" cellpadding="5" cellspacing="7" border="10px" bordercolor="white">
<tbody><tr>
<td class="below" style="border-radius: 7px;"></td>
<td class="below" style="border-radius: 10px;"></td>
<td class="below" style="border-radius: 16px;"></td>
</tr>
<tr>
<td class="below" style="border-radius: 12px;"></td>
<td class="below" style="border-radius: 2px;"></td>
<td class="below" style="border-radius: 18px;"></td>
</tr>
<tr>
<td class="below" style="border-radius: 50%;"></td>
<td class="below" style="border-radius: 3px;"></td>
<td class="below" style="border-top-right-radius: 14px ;border-bottom-left-radius: 14px;border-top-left-radius: 3px;border-bottom-right-radius: 3px;"></td>
</tr>
</tbody></table>
</body></html>