-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
128 lines (126 loc) · 4.02 KB
/
contact.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
<!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>Ujian</title>
</head>
<link rel="stylesheet" href="styles/contact.css" />
<body>
<div id="top_line"></div>
<div id="wrapper">
<div id="header">
<!-- start header -->
<div id="header_left">
<!-- start header_left -->
<div class="container">
<img src="images/logo_baba.png" alt="" />
</div>
<!-- end header_left -->
</div>
<div id="header_right">
<!-- start header_right -->
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- end header_right -->
</div>
<!-- end header -->
</div>
<div class="container">
<h1>Contact</h1>
</div>
<div id="content">
<!-- start content_service -->
<div>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3966.3252610688673!2d106.78088231541845!3d-6.220770662660934!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e69f6cd0000003d%3A0x1f5fa010fece9b0b!2sKampus%20Babastudio%20Permata%20Hijau!5e0!3m2!1sen!2sid!4v1612639904459!5m2!1sen!2sid"
width="1150"
height="450"
frameborder="0"
style="border: 0"
allowfullscreen=""
aria-hidden="false"
tabindex="0"
></iframe>
<br />
view <a href="#"
>kursus web, kursus Web Design, Kursus Toko Online, Kursus Internet
Marketing - Baba Studio</a
> in a larger map
</div>
<div>
<br />
<form id="form_contact" action="" method="post">
<table cellspacing="20">
<tr valign="top">
<td>Name</td>
<td>:</td>
<td>
<input
type="text"
name="username"
id="username"
placeholder="name"
value=""
required
/>
</td>
</tr>
<tr valign="top">
<td>Email</td>
<td>:</td>
<td>
<input
type="email"
name="useremail"
id="useremail"
placeholder="email"
value=""
required
/>
</td>
</tr>
<tr valign="top">
<td>Subject</td>
<td>:</td>
<td>
<input
type="text"
name="usersubject"
id="usersubject"
placeholder="subject"
value=""
required
/>
</td>
</tr>
<tr valign="top">
<td>Messeage</td>
<td>:</td>
<td><textarea name="" id="" cols="" rows=""></textarea></td>
</tr>
<tr>
<td></td>
<td></td>
<td><input type="submit" value="SEND" /></td>
</tr>
</table>
</form>
</div>
<!-- end content_service -->
</div>
<div id="footer">
<!-- start footer -->
<div class="container">© My Encounter 2021</div>
<!-- end footer -->
</div>
</div>
</body>
</html>