-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
164 lines (152 loc) · 4.28 KB
/
dashboard.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="id">
<head>
<title>Beranda - KULIAH PAKAR</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://www.w3schools.com/lib/w3-theme-blue-grey.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<style>
body {
font-family: "Open Sans", sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
.container {
background-color: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 800px;
margin: 50px auto;
text-align: center;
}
h1 {
color: #333;
margin-bottom: 20px;
}
p {
color: #666;
font-size: 1.2em;
}
.main-image {
max-width: 100%;
height: auto;
border-radius: 8px;
margin-top: 20px;
}
.button {
background-color: #4caf50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 20px;
}
.button:hover {
background-color: #45a049;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
margin-top: 20px;
}
.footer-links {
list-style-type: none;
padding: 0;
margin: 10px 0 0 0;
display: flex;
justify-content: center;
gap: 15px;
}
.footer-links li a {
color: white;
text-decoration: none;
}
.footer-links li a:hover {
text-decoration: underline;
}
</style>
</head>
<body class="w3-theme-l5">
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-theme-d2 w3-left-align w3-large">
<a
href="index.html"
class="w3-bar-item w3-button w3-padding-large w3-theme-d4"
>
<i class="fa fa-home w3-margin-right"></i>HOME
</a>
<a
href="Lokasi.html"
class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white"
title="Lokasi"
>
<i class="fa fa-globe"></i>
</a>
<a
href="Profil.html"
class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white"
title="Profile"
>
<i class="fa fa-user"></i>
</a>
<a
href="Pesan.html"
class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white"
title="Messages"
>
<i class="fa fa-envelope"></i>
</a>
<a
href="logout.html"
class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white"
title="Logout"
>
<i class="fa fa-sign-out"></i> Logout
</a>
</div>
</div>
<main>
<div class="container">
<h1>Selamat Datang di Beranda Kami</h1>
<p>
Ini adalah halaman beranda setelah login. Silakan jelajahi menu di
atas untuk informasi lebih lanjut.
</p>
<img
src="c:\Users\INTEL\Documents\DESAIN\SPANDUK\Biru Kuning Tegas Kampanye Pilkada Kepala Daerah Medium Banner .png"
alt="Foto Beranda"
class="main-image"
/>
</div>
</main>
<footer>
<div class="footer-content">
<p>© 2024 LPPM STIKES BAKTI NUSANTARA GORONTALO.</p>
<ul class="footer-links">
<li><a href="Tentang kami.html">Tentang Kami</a></li>
<li><a href="Kontak.html">Kontak</a></li>
<li><a href="Privasi.html">Kebijakan Privasi</a></li>
<li><a href="Syarat.html">Syarat & Ketentuan</a></li>
</ul>
</div>
</footer>
</body>
</html>