-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
127 lines (103 loc) · 3.6 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
127
<html><head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-99V7S66QCR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-99V7S66QCR');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Kerr Sundries - Get in Touch</title>
<meta name="description" content="Contact Kerr Sundries for inquiries or support. Reach us via phone, email, or chat with our Shop Assistant. ACN: 679 029 059, ABN: 33679029059.">
<meta name="keywords" content="Kerr Sundries, contact, customer support, shop assistant, ACN, ABN">
<link rel="canonical" href="https://kerrsundries.github.io/KerrSundries.gihub.io/contact.html">
<meta property="og:title" content="Contact Kerr Sundries - Get in Touch">
<meta property="og:description" content="Need help? Contact Kerr Sundries via phone, email, or chat with our Shop Assistant.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://kerrsundries.github.io/KerrSundries.gihub.io/contact.html"><title>Kerr Sundries - Contact Us</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: #EEDB8A;
display: flex;
flex-direction: column;
min-height: 80vh;
}
header {
background-color: #111;
padding: 20px 0;
}
nav {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
nav a {
color: #EEDB8A;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
transition: all 0.3s ease;
}
nav a:hover, nav a.active {
color: #FF4500;
transform: scale(1.1);
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
margin: 5px 0;
}
.logo {
width: 100px;
height: 100px;
object-fit: contain;
transition: transform 1s ease-in-out;
}
.content {
max-width: 800px;
margin: 20px auto;
padding: 20px;
text-align: center;
}
.contact-info {
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<nav>
<a href="Index.html" >Home</a>
<a href="about.html">About</a>
<a class="active">Contact</a>
</nav>
<nav>
<a href="https://edithkerr-shop.fourthwall.com/">Fourth Wall</a>
<a href="https://www.redbubble.com/people/kerrsundries/shop?asc=u">Redbubble</a>
<a href="https://www.teepublic.com/user/kerr-sundries1">Teepublic</a>
</nav>
</header>
<div class="logo-container">
<img src="logosm.png" alt="Kerr Sundries logo: A circular emblem with a black 'K' on a red-orange gradient background, bordered by gold" class="logo">
</div>
<div class="content">
<h1>Contact Kerr Sundries</h1>
<a href="https://new-interface-7a9a84.zapier.app" style="text-decoration: none;">
<button style="background-color: #EEDB8A; color: #000000; padding: 10px 20px; border: none; border-radius: 5px; font-size: 16px; cursor: pointer;">Chat with our Shop Assistant</button>
</a>
<div class="contact-info">
<p>ACN: 679 029 059</p>
<p>ABN: 33679029059</p>
<p>Phone: 0408 703 048</p>
<p>Email: kerrsundries@gmail.com</p>
</div>
</div>
</body>
</html>