-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (58 loc) · 2.23 KB
/
about.html
File metadata and controls
65 lines (58 loc) · 2.23 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
<!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>Home</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates&family=Quicksand:wght@300&family=Sacramento&display=swap" rel="stylesheet">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link rel="icon" type="image/x-icon" href="icon/favicon.png">
</head>
<body>
<!-- --Menu Navigasi-- -->
<nav>
<div class="logo">
<h4> Magic Cosmetic</h4>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="history.html">History</a></li>
<li><a href="product.html">Product</a></li>
<li><a href="#">About</a></li>
</ul>
<div class="menu-toogle">
<input type="checkbox"/>
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="wrap_about">
<div class="container_about">
<p>
We're very approachable and would love to speak to you. Feel free to call,
text us in email, follow Us or DM Us on Instagram.
</p>
</div>
<div class="icon">
<a href="https://www.facebook.com/nabilmuthi77" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://bit.ly/3xI8eUJ" target="_blank"><i class="fa fa-whatsapp" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/nabilmuthi77" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="mailto:nabilmuthi77@gmail.com"><i class="fa fa-envelope-o" aria-hidden="true"></i></a>
</div>
<div class="back">
<a href="index.html">Back to Home</a>
</div>
</div>
<!-- footer -->
<footer>
<div class="copy_glass">
<div class="copyright"><span>@copyright 2022 Magic Cosmetic</span></div>
</div>
</footer>
<!-- Java script -->
<script src="script.js"></script>
</body>
</html>