-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflags.html
More file actions
39 lines (37 loc) · 892 Bytes
/
flags.html
File metadata and controls
39 lines (37 loc) · 892 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
<!DOCTYPE html>
<html>
<head>
<title>
flags of different nation
</title>
<style>
div{
background-color:rgb(174, 28, 40);
width:700px;
height:500px;
position:relative;
}
div div{
background-color:white;
width:100%;
height:40%;
position:absolute;
top:30%;
}
div div div{
background-color:rgb(33, 70, 139);
height:80%;
position:absolute;
top:100%
}
</style>
</head>
<body>
<div>
<div>
<div>
</div>
</div>
</div>
</body>
</html>