-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (103 loc) · 3.07 KB
/
Copy pathindex.html
File metadata and controls
127 lines (103 loc) · 3.07 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
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
<!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>GoQueue</title>
<link rel="icon" type="image/x-icon" href="Logo.jpg">
</head>
<body>
<div class="badan"><!-- Bagian Header -->
<div class="header">
<img src="Logo.jpg" alt="">
<h1>Welcome To GoQueue</h1>
</div>
<div class="konten"><!-- Bagian Isi -->
<div class="isi">Pesan Pengembang<br> <br> Selamat datang di GoQueue, Nikmati fitur yang sudah disediakan oleh GoQueue untuk memenuhi kebutuhan anda sehari hari dimana pun dan kapanpun.</div>
<div class="isi">Tujuan <br> <br>GoQueue merupakan web pengembang untuk memanggil nomor antrian dengan fitur yang cukup simple dan mudah.</div>
<div class="isi">Kredit <br> <br>GoQueue diciptakan pada tanggal 1 Februari dan di resmikan pada tanggal 20 Februari oleh beberapa siswa SMKN 69 Jakarta untuk memenuhi projek dari Institut kemandirian & smarteschool.</div>
</div>
<br>
<div class="mulai"><!-- Bagian Tombol -->
<a class="lanjut" href="Halaman daftar.html">Mulai</a>
</div>
</div>
</body>
<style>
.header{
height: 25%;
background-color: #BED7C9;
;
margin: 0%;
display: flex;
flex-direction: row;
text-decoration: none;
padding-left: 30px;
justify-content: start;
align-content: center;
align-items: center;
}
body{
margin: 0%;
display: flex;
flex-direction: column;
background: #284B34;
}
.konten{
display: flex;
flex-direction: row;
justify-content: space-around;
align-content: start;
justify-self: center;
margin-top: 20px;
margin-bottom: 20px;
height: 50%;
flex-wrap: wrap;
}
.isi{
padding: 15px;
border: 5px;
background-color: #BED7C9;
border-radius: 25px;
width: 300px;
margin: 5px;
}
.isi:hover{
transition: 0.5s;
scale: 1.2;
box-shadow: -20px 20px 0px rgb(0, 0, 0);
}
.lanjut{
text-decoration: none;
color: black;
background-color: #BED7C9;
padding: 20px;
width: 300px;
display: flex;
justify-content: center;
border-radius: 50px;
}
.lanjut:hover{
box-shadow: -20px 20px 0px rgb(0, 0, 0);
transition: 0.5s;
}
.mulai{
display: flex;
justify-content: center;
margin-top: auto;
justify-self: flex-end;
margin-bottom: 30px;
}
.badan{
display: flex;
flex-direction: column;
height: 100%;
}
img{
width: 100px;
margin-right: 20px;
border-radius: 100%;
}
</style>
</html>