-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (67 loc) · 2.95 KB
/
about.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
<!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 class="active"><a href="about.html">ABOUT</a></li>
<li><a href="service.html">SERVICE</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</header>
<!-- label -->
<section class="label">
<div class="container">
<p>Home / About</p>
</div>
</section>
<section class="about">
<div class="container">
<img src="img/banner.jpg" width="100%">
<h3>ABOUT</h3>
<p><strong>Aldi Company</strong> is simply dummy text of the printing and typesetting industry. <strong>Aldi Company has been the industry's standard dummy text ever since the 1500s</strong>, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<h3>VISI</h3>
<p><strong>Aldi Company</strong> is simply dummy text of the printing and typesetting industry. <strong>Aldi Company has been the industry's standard dummy text ever since the 1500s</strong>, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<h3>MISI</h3>
<p><strong>Aldi Company</strong> is simply dummy text of the printing and typesetting industry. <strong>Aldi Company has been the industry's standard dummy text ever since the 1500s</strong>. </p>
</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>