-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 790 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Column Layout Methods</title>
<style>
p {
padding: 0;
margin: 0;
font-weight: 700;
}
li {
list-style: none;
}
.container {
padding: 10px;
background-color: gold;
display:flex;
gap:10px;
}
</style>
</head>
<body>
<div class="container">
<p>Page Layout Methods</p>
<li><a href="./html-table.html">HTML Table</a></li>
<li><a href="./inline-block.html">Inline-Block</li>
<li><a href="./absolute-position.html">Absolute Positioning</li>
<li><a href="./float.html">Float</li>
<li><a href="./flex.html">Flexbox</li>
</div>
</body>
</html>