-
Notifications
You must be signed in to change notification settings - Fork 0
/
lat3.html
61 lines (59 loc) · 1.36 KB
/
lat3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>HTML dasar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* *{
margin: 0px;
padding: 0px;
} */
.header{
background-color: aquamarine;
height: 10%;
padding:20px;
}
.sidebar{
background-color: deepskyblue;
width:30%;
padding-top:20px;
float:left;
height: 300px;
}
.content{
background-color: darkturquoise;
float:right;
width:70%;
padding-top:20px;
height: 300px;
}
.wrap-content{
text-align: center;
}
.footer{
clear: both;
background-color: lightseagreen;
padding:10px;
}
</style>
</head>
<body>
<div class="header">
<p>Header</p>
</div>
<div class="wrap-content">
<div class="sidebar">
<p>Sidebar</p>
</div>
<div class="content">
<p>Lorem ipsum dolor sit amet
consectetur adipisicing elit. Nihil, in?</p>
</div>
</div>
<div class="footer">
<p>Footer</p>
</div>
</body>
</html>