html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!--Made by Umar 'comrade'-->
<div class="Fix">
<div class="Pole"></div>
<div class="green"></div>
<div class="white"></div>
<div class="green1"></div>
</div>
<div class="box">
<p>
<h3>The National Pledge</h3>
I pledge to Nigeria, my country
To be faithful, loyal, and honest
To serve Nigeria with all my strength
To defend her unity
And uphold her honor and glory
So help me God.</p>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
background-color: lightgrey;
margin-left:50px;
}
/*the pole stand of the flag*/
.Pole{
float:left;
margin-left:50px;
background-color: black;
border-radius:10px;
width:10px;
height:300px;
}
/*pole code ends here*/
/*The flag starts*/
.green{
margin-left:50px;
position:relative;
background-color: green;
width:200px;
height:30px;
}
.white {
margin-left:50px;
position:relative;
background-color: white;
width:200px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run