-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (81 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aldi Akbar</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
</head>
<body>
<!-- loader -->
<div class="bg-loader">
<div class="loader">
</div>
</div>
<!-- header -->
<div class="medsos">
<div class="container">
<ul>
<li><a href="#"><i class="fa-brands fa-facebook-messenger"></i></a></li>
<li><a href="#"><i class="fa-brands fa-youtube"></i></a></li>
<li><a href="#"><i class="fa-brands fa-twitter"></i></a></li>
</ul>
</div>
</div>
<header>
<div class="container">
<h1><a href="">ALDI AKBAR</a></h1>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="service.html">SERVICE</a></li>
<li class="active"><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</header>
<!-- label -->
<section class="label">
<div class="container">
<p>Home / contact</p>
</div>
</section>
<!-- service -->
<section class="service">
<div class="container">
<h3>CONTACT INFO</h3>
<div class="box">
<div class="col-4">
<h4>Address</h4>
<p>Kp.Serut RT/RW 04/03 Desa. Pamekarsari Kec. Banyuresmi Kab.GArut 44191</p>
</div>
<div class="col-4">
<h4>Email</h4>
<p>[email protected]</p>
</div>
<div class="col-4">
<h4>Telp.</h4>
<p>(021)-888-888-888</p>
</div>
<div class="col-4">
<h4>Hp.</h4>
<p>(+62)89-699-626-009</p>
</div>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3958.5611830611806!2d107.91364251789263!3d-7.17661433801231!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e68b14ffcc2c5b5%3A0x62e492c0aaaf9a6b!2sSerut%20home!5e0!3m2!1sid!2sid!4v1692850453798!5m2!1sid!2sid" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</section>
<!-- footer -->
<footer>
<div class="container">
<small>Copyright © 2023 - Aldi Akbar. All Rights Reserved.</small>
</div>
</footer>
<script type="text/javascript">
$(document).ready(function() {
$(".bg-loader").hide();
})
</script>
</body>
</html>