-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
105 lines (84 loc) · 2.37 KB
/
index.php
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>Pemograman3.com</title>
<style>
body {
font-family: Times, sans-serif;
background-color: #990066;
margin: 0;
padding: 0;
}
.container {
text-align: center;
padding: 30px;
}
header {
background-color: #94bbe9;
color: black;
padding: 20px;
}
header h1 {
margin: 0;
}
.contain {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
a {
text-decoration: none;
}
.btn {
background-color: #FFCCFF;
color: Black;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-align: center;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #e74c3c;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>MENU</h1>
</header>
<div class="contain">
<a href="tampil_barang.php">
<button class="btn">BARANG</button>
</a>
<a href="tampil_kategori.php">
<button class="btn">KATEGORI</button>
</a>
<a href="tampil_member.php">
<button class="btn">MEMBER</button>
</a>
<a href="tampil_penjualan.php">
<button class="btn">PENJUALAN</button>
</a>
<a href="tampil_transaksi.php">
<button class="btn">TRANSAKSI</button>
</a>
<a href="tampil_user.php">
<button class="btn">USER</button>
</a>
<a href="view_report.php">
<button class="btn">VIEW REPORT</button>
</a>
</div>
<footer>
SELAMAT DATANG
</footer>
</div>
</body>
</html>