-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontact.php
131 lines (122 loc) · 3.96 KB
/
contact.php
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
129
130
131
<?php
include("./koneksi/koneksi.php");
$query_k = "SELECT * FROM tbl_keranjang";
$ret_k = mysqli_query($koneksi, $query_k);
$jum_k = mysqli_num_rows($ret_k);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="shortcut icon" href="./images/Logo.jpg" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<!-- Glidejs -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/css/glide.core.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/css/glide.theme.css">
<!-- Custom StyleSheet -->
<link rel="stylesheet" href="./styles.css" />
<title>Thrify | Ecommerce Website</title>
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="wrapper container">
<div class="logo">
<a href=".">
<img src="./admin/assets/images/logo-white.svg" width="110" height="32" alt="Thrify" style="filter: invert(1);">
</a>
</div>
<ul class="nav-list">
<div class="top">
<label for="" class="btn close-btn"><i class="fas fa-times"></i></label>
</div>
<li><a href="index.php">Home</a></li>
<li><a href="products.php">Products</a></li>
<li><a href="about.php">About</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="account.php">Account</a></li>
</li>
<!-- icons -->
<li class="icons">
<span>
<a href="cart.php" style="padding: 0;">
<img src="./images/shoppingBag.svg" alt="" />
<small class="count d-flex"><?= $jum_k ?></small>
</a>
</span>
</li>
</ul>
<label for="" class="btn open-btn"><i class="fas fa-bars"></i></label>
</div>
</nav>
<!-- Contact -->
<section class="section about">
<div class="title">
<h2>Contact Us</h2>
<div>
<div class="about-center container">
<div class="right" data-aos="fade-left" data-aos-duration="1500">
<h1>THRIFY A HAPPINESS STORE <span id="type2"></span></h1>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quos,
unde! Doloribus quisquam magnam optio mollitia. Consequuntur alias,
soluta optio porro dignissimos veritatis modi nisi molestias,
doloremque sapiente quia consectetur vel!
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer" class="section footer">
<div class="container">
<div class="footer-container">
<div class="footer-center">
<h3>INFORMATION</h3>
<a href="#">About Us</a>
<a href="#">Contact Us</a>
</div>
<div class="footer-center">
<h3>MY ACCOUNT</h3>
<a href="#">My Account</a>
<a href="#">Order History</a>
</div>
<div class="footer-center">
<h3>CONTACT US</h3>
<div>
<span>
<i class="fas fa-map-marker-alt"></i>
</span>
Perum Chandra Kartika, Kab Pasuruan, Jawa Timur, Indonesia
</div>
<div>
<span>
<i class="far fa-envelope"></i>
</span>
Thrify@gmail.com
</div>
<div>
<span>
<i class="fas fa-phone"></i>
</span>
082-143-456-789
</div>
<div class="payment-methods">
<img src="./images/payment.png" alt="">
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- Glidejs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/glide.min.js"></script>
<!-- Custom Scripts -->
<script src="./js/products.js"></script>
<script src="./js/slider.js"></script>
<script src="./js/index.js"></script>
</body>
</html>