This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss1.html
More file actions
98 lines (92 loc) · 1.97 KB
/
css1.html
File metadata and controls
98 lines (92 loc) · 1.97 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
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>task_1</title>
<style>
table {
border-collapse: collapse;
width: 50%;
border-radius: 20px;
border-color: #000000;
background-color: rgb(67, 74, 173);
padding:10px;
}
th, td {
background-color: aqua;
padding: 10px;
border: 1px solid #000000;
border-width: 2px;
border-radius: 20px;
border-color:black;
text-align: left;
}
.box-container {
margin-top: 25px;
margin-left: 30%;
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 10px;
}
.box1 {
width: 200px;
height: 100px;
border: 1px #0b0b0b;
background-color: #bfd6ca;
border-radius: 15px;
}
.circle{
width: 200px;
height: 100px;
border-radius: 50%;
border: 1px #0b0b0b;
background-color: #bfd6ca;
}
.box2 {
width: 200px;
height: 100px;
border: 1px #0b0b0b;
background-color: #bfd6ca;
border-radius: 25px;
}
</style>
</head>
<body>
<center>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
</center>
<div class="box-container">
<div class="box1"></div>
<div class="box1"></div>
<div class="box2"></div>
</div>
<div class="box-container">
<div class="box1"></div>
<div class="box1"></div>
<div class="box2"></div>
</div>
<div class="box-container">
<div class="circle"></div>
<div class="box1"></div>
<div class="box2"></div>
</div>
</body>
</html>