-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
126 lines (117 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>E-Commerce Website</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=League+Spartan:[email protected]&family=Quicksand:[email protected]&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<header>
<a href="#"><img src="img/logoAngel.png" class="logo" alt="Angel-Shop" width="100px" /></a>
<nav>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
<li id="lg-bag">
<a href="cart.html"><i class="fa-solid fa-bag-shopping"></i></a>
</li>
<a href="#" id="close"><i class="fa-solid fa-xmark"></i></a>
</ul>
</nav>
<div id="mobile">
<a href="cart.html"><i class="fa-solid fa-bag-shopping"></i></a>
<i id="bar" class="fa-solid fa-bars"></i>
</div>
</header>
<!-- CONTENT -->
<main>
<div class="container">
<div class="card-container">
<div class="left">
<!-- <h2>Contact</h2> -->
<img
src="img/Premium E-Commerce 3D Illustration pack from E-commerce & Shopping 3D Illustrations (1)-Photoroom.png"
alt="">
</div>
<div class="right">
<div class="right-container">
<form action="">
<h2 class="lg-view">Hubungi Kami</h2>
<h2 class="sm-view"></h2>
<input type="text" placeholder="Nama">
<input type="Email" placeholder="Alamat Email">
<input type="text" placeholder="Perusahaan">
<input type="Phone" placeholder="Telepone">
<textarea rows="10" placeholder="Pesan"></textarea>
<button>Kirim</button>
</form>
</div>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer id="fot" class="section-p1">
<div class="row">
<div class="col">
<h4>OUR COMMUNITY</h4>
<div class="logo">
<img src="img/footer/LOGO-02 (1).png" alt="" />
<img src="img/footer/hmcLight.png" alt="" />
</div>
</div>
<div class="col">
<h4>ABOUT</h4>
<div class="about">
<a href="#fot">About us</a>
<a href="#fot">Delivery Information</a>
<a href="#fot">Privacy Policy</a>
<a href="#fot">Terms & Condition</a>
<a href="#fot">Contact Us</a>
</div>
</div>
<div class="col">
<h4>FOLLOW US</h4>
<div class="icon">
<ul>
<li><a href="#fot">Facebook</a></li>
<li><a href="#fot">Twitter</a></li>
<li><a href="#fot">Instagram</a></li>
<li><a href="#fot">Pinterest</a></li>
<li><a href="#fot">YouTube</a></li>
</ul>
</div>
</div>
<div class="col">
<h4>PAYMENT METHOD</h4>
<div class="payment">
<img src="img/footer/Visaa.PNG" alt="visa" />
<img src="img/footer/pp.PNG" alt="payPal" />
<img src="img/footer/masterCard.PNG" alt="bulat" />
<img src="img/footer/bitcoinn.PNG" alt="bitCoin" />
</div>
</div>
</div>
<div class="copyright">
<hr />
<p>
Copyright © 2024 - Syahril Fitrawan Abadi dan Angelina Febriani
Madesen
</p>
</div>
</footer>
<!-- <script src="nav.js"></script> -->
<script src="main.js"></script>
</body>
</html>