forked from KhaingSweWin/pre_intern01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.html
103 lines (96 loc) · 2.8 KB
/
test2.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
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
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>Test html and css</title>
<style>
.container
{
width:100%;
height:100%;
}
.header
{
background-color: darkblue;
width:100%;
height:30%;
position:absolute;
top:0;
left:0;
text-align: center;
}
.navbar
{
position: absolute;
background-color: red;
top:180px;
left: 0px;
height:10%;
width:100%;
}
.mainbody
{
position:absolute;
top:240px;
left:0px;
background-color: yellow;
width:100%;
height:70%;
padding:10px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: darkblue;
color: white;
text-align: center;
}
.imagelogo
{
margin: 20px;
padding:20px;
position:absolute;
}
.fontstyle
{
font-size: 30px;
font-family: Arial,Roboto;
font-weight: bold;
color: darkkhaki;
}
ul{
padding-left: 140px;
}
ul li
{
float: left;
list-style: none;
padding:10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="html.jpg" width="200px" class="imagelogo">
<h2 class="fontstyle">Pre_Intern Course for Web Development</h2>
<img src="html.jpg" width="200px" class="imagelogo">
</div>
<div class="navbar">
<ul>
<li>Home </li>
<li>About </li>
<li>Courses </li>
<li>Contact Us </li>
</ul>
</div>
<div class="mainbody">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Veniam dolorum sint possimus aliquam odit saepe, nihil natus incidunt labore vel optio alias voluptatum ducimus? Nemo voluptate sequi nesciunt at placeat.
</div>
<div class="footer">
Copyright
</div>
</div>
</body>
</html>