-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
47 lines (44 loc) · 996 Bytes
/
layout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Layout.UKK.Test</title>
<style>
.menu {
text-align: center;
font-size: 20px;
padding: 10px;
background: #616161;
color:#fff;
}
.menu > a {
color:#fff;
text-decoration: none;
}
.header {
margin: 10px auto;
text-align: center;
}
.header h2 {
color: rebeccapurple;
}
</style>
</head>
<body>
<div class="header">
<h2>Aplikasi Inventaris Sarpras SMK 4</h2
</div>
<div class="menu">
<a href="#">Depa</a> -
<a href="#">Master/Inventaris</a> -
<a href="#">Master/Ruang</a> -
<a href="#">Master/Jenis</a> -
<a href="#">Transaksi/Pengambilan</a> -
<a href="#">Transaksi/Pengembalian</a> -
<a href="#">Laporan</a> -
<a href="#">Keluar</a>
</div>
</body>
</html>