-
Notifications
You must be signed in to change notification settings - Fork 0
/
divtag.html
50 lines (50 loc) · 1.16 KB
/
divtag.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Div Tag</title>
<style>
.main{
width: 500px;
height: 500px;
background-color: aqua;
}
#parent-row-1{
width: 500px;
height: 250px;
background-color: blueviolet;
}
#parent-row-2{
width: 500px;
height: 250px;
background-color: blue;
}
.col-1{
width: 250px;
height: 250px;
background-color: green;
float: left;
}
.col-2{
width: 250px;
height: 250px;
float: left;
background-color: greenyellow;
}
</style>
</head>
<body>
<div class="main">
<div id="parent-row-1">
<div class="col-1">Home</div>
<div class="col-2">About</div>
</div>
<hr>
<div id="parent-row-2">
<div class="col-1">Gallery</div>
<div class="col-2">Contact</div>
</div>
</div>
</body>
</html>