forked from akhmadbaru86/msibHTP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayoutcss.html
More file actions
42 lines (41 loc) · 1.01 KB
/
layoutcss.html
File metadata and controls
42 lines (41 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Latihan Layout CSS</title>
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="icon" href="img/blob-discors.gif">
</head>
<body>
<div class="header">
<h1>
Header
</h1>
<p><center>ini adalah header</center></p>
</div>
<div class="topnav">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
<div class="row">
<div class="kolom1 side">
<h2>Left side</h2>
<p> Ini bagian kiri</p>
</div>
<div class="kolom1 middle">
<h2>main content</h2>
<p>ini bagian tengah</p>
</div>
<div class="kolom1 side">
<h2>Right Side</h2>
<p>Ini bagian Kanan</p>
</div>
</div>
<div class="footer">
<p>footer</p>
</div>
</body>
</html>