-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContacts.html
More file actions
135 lines (127 loc) · 5.36 KB
/
Contacts.html
File metadata and controls
135 lines (127 loc) · 5.36 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
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
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Checkout page for Rajambal Cottons - Complete your purchase of premium cotton products.">
<title>Checkout - Rajambal Cottons</title>
<!-- Inline critical CSS -->
<style>
body, html {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.header {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
z-index: 1000;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
display: flex;
align-items: center;
}
.logo-icon {
width: 40px;
height: 40px;
}
.logo-text {
font-size: 1.5rem;
font-weight: 600;
margin-left: 10px;
}
</style>
<!-- Preload fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap"></noscript>
<!-- Load main CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Defer Material Icons -->
<link rel="preload" href="https://fonts.googleapis.com/icon?family=Material+Icons" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"></noscript>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','G-MQ8HF6R671');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=G-MQ8HF6R671"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header class="header">
<div class="container">
<div class="logo">
<a href="index.html">
<img src="images/rc.svg" alt="Rajambal Cottons Logo" class="logo-icon">
</a>
<span class="logo-text">Rajambal Cottons</span>
</div>
<nav class="main-nav">
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#products">Products</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="checkout">
<div class="container">
<h1>Checkout</h1>
<div id="checkoutProductCards" class="checkout-products"></div>
<div id="totalPrice" class="checkout-total"></div>
<button id="checkoutButton" class="btn btn-primary">Complete Purchase</button>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#products">Products</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-icons">
<a href="#" target="_blank">Facebook</a>
<a href="#" target="_blank">Instagram</a>
<a href="#" target="_blank">Twitter</a>
</div>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<p>37, Mettu Street, Kanchipuram</p>
<p>Email: <a href="/cdn-cgi/l/email-protection#b0e0c2d1d2d8c59ee6d1dadad9c2d1ddf0c9d1d8dfdf9ed3dfdd">Vajjiram</a></p>
<p>Phone: +91-44-67259797, +91-9443369336</p>
<p>Fax: +91-44-27233699</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Rajambal Cottons. All rights reserved. | Designed by Prabu Vajjiram</p>
<a href="login.php" class="admin-link">Admin</a>
</div>
</div>
</footer>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script src="js/checkout.js"></script>
</body>
</html>