-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML5_CSS3_Practise.html
More file actions
94 lines (91 loc) · 2.12 KB
/
HTML5_CSS3_Practise.html
File metadata and controls
94 lines (91 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML & CSS Practice</title>
<style type="text/css">
.main {
width: 900px;
height: 200px;
background-color: aqua;
}
.row1 {
width: 900px;
height: 50px;
background-color: blue;
}
.row1c1 {
width: 200px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(0, 255, 30);
float: left;
}
.row1c2 {
width: 300px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(246, 255, 0);
float: left;
}
.row1c3 {
width: 400px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(85, 255, 0);
float: right;
}
.row2 {
width: 900px;
height: 100px;
background-color: peachpuff;
display: flex;
justify-content: center;
align-items: center;
}
.row3 {
width: 900px;
height: 50px;
background-color: chocolate;
}
.row3c1 {
width: 400px;
height: 50px;
float: left;
display: flex;
justify-content: center;
align-items: center;
}
.row3c2 {
width: 500px;
height: 50px;
float: right;
background-color: cadetblue;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="main">
<div class="row1">
<div class="row1c1">Home</div>
<div class="row1c2">About</div>
<div class="row1c3">Course</div>
</div>
<div class="row2">Welcome to Akand NextGen Stack</div>
<div class="row3">
<div class="row3c1">JavaScript</div>
<div class="row3c2">MERN</div>
</div>
</div>
</body>
</html>