-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpesan.html
More file actions
52 lines (48 loc) · 1.76 KB
/
pesan.html
File metadata and controls
52 lines (48 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/pesan-desktop.css">
<link rel="stylesheet" type="text/css" href="./css/pesan-mobile.css">
<title>Buat Pesanan | Portal-IT.ID</title>
<!-- Online CSS Source -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Bebas Neue">
</head>
<body>
<!-- Start of Main Container -->
<div id="main-container">
<!-- Box Form -->
<div id="box-form">
<!-- Form head -->
<div id="form-head">
<h1 id="form-title">Form Pemesanan</h1>
</div>
<!-- Form body -->
<form method="POST" action="pesan.php">
<div id="form-body">
<!-- Nama Lengkap -->
<label for="inputNama">Nama Lengkap</label> <span style="color: red;">*</span>
<input type="text" name="inputNama" placeholder="Ex: John Doe">
<!-- Nomor HP -->
<label for="inputNoHP">Nomor Handphone (WhatsApp)</label> <span style="color: red;">*</span>
<input type="tel" name="inputNoHP" placeholder="Ex: 08xx-xxxx-xxxx">
<!-- Email -->
<label for="inputEmail">Email</label> <span style="color: red;">*</span>
<input type="email" name="inputEmail" placeholder="Ex: youremail@gmail.com">
<!-- Pesan -->
<label for="inputPesan">Ketikkan Pesanan Anda</label> <span style="color: red;">*</span>
<textarea name="inputPesan" cols="30" rows="10" placeholder="Ex: Saya ingin memesan jasa ..."></textarea>
<!-- Submit -->
<input type="submit" name="btnPesan" value="Buat Pesanan" id="btnPesan">
</div>
</form>
<!-- Form footer -->
<div id="form-footer">
<p>Copyright (c) CV.Portal-IT.ID 2023</p>
</div>
</div>
</div>
<!-- End of Main Container -->
</body>
</html>