-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.html
More file actions
69 lines (60 loc) · 1.4 KB
/
Copy pathdiv.html
File metadata and controls
69 lines (60 loc) · 1.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Layout Example</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0 auto;
padding: 0;
width: 1140px;
}
.container {
display: flex;
flex-wrap: wrap;
}
.header {
background-color: #333;
color: #fff;
padding: 20px;
width: 100%;
}
.sidebar {
background-color: #f4f4f4;
padding: 0;
width: 25%;
}
.content {
padding: 0;
width: 75%;
}
.footer {
background-color: #333;
color: #fff;
padding: 20px;
width: 100%;
}
</style>
</head>
<body>
<div class="header">
<h1>Header</h1>
<p>This is the header section.</p>
</div>
<div class="container">
<div class="sidebar">
<h2>Sidebar</h2>
<p>This is the sidebar section.</p>
</div>
<div class="content">
<h2>Main Content</h2>
<p>This is the main content section.</p>
</div>
</div>
<div class="footer">
<p>Footer © 2023</p>
</div>
</body>
</html>