-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
171 lines (159 loc) · 5.45 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us - GERICS</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="contact.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<a href="index.html">【☊】 GERICS</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="contact-section">
<div class="contact-form">
<h2>Send Us A Message</h2>
<p>
GERICS is your destination for premium wireless earbuds
<br />that was established in 2024. At GERICS, we specialize in
<br />crafting wireless earbuds that offer unparalleled sound <br />
performance, comfort, and convenience.
</p>
<form action="submit_form.php" method="POST">
<input
type="text"
id="name"
name="name"
placeholder="Name"
required
/>
<input type="tel" id="tel" name="tel" placeholder="Tel" required />
<input
type="email"
id="email"
name="email"
placeholder="Email"
required
/>
<input
type="address"
id="address"
name="address"
placeholder="Address"
required
/>
<textarea
id="message"
name="message"
rows="5"
placeholder="Message"
required
></textarea>
<button type="submit">Send Message</button>
</form>
</div>
<div class="vertical"></div>
<div class="text-over-line">
<div class="reach-out">
<h2>Reach Out And Contact Us</h2>
<p>
Our team of industry experts, with extensive backgrounds in
<br />product development and innovation, ensures that each<br />Gerics
product delivers exceptional sound quality, ergonomic <br />design,
and seamless connectivity. Experience the future of <br />wireless
audio with Gerics, where innovation meets excellence.
</p>
<div class="contact-who">
<p>
<i class="far fa-envelope"></i>
<a href="mailto:info@GERICS.com">info@GERICS.com</a>
</p>
<p><i class="fas fa-phone"></i> +86 156 7677 2796</p>
<p>
<i class="fas fa-map-marker-alt"></i> 16 E. Redwood Drive Orlando,
FL 32806
</p>
</div>
<div class="social-links">
<a href="https://www.instagram.com" class="instagram"
><i class="fab fa-instagram"></i
></a>
<a href="https://www.facebook.com" class="facebook"
><i class="fab fa-facebook"></i
></a>
<a href="https://www.twitter.com" class="twitter"
><i class="fab fa-twitter"></i
></a>
<a href="https://www.pinterest.com" class="pinterest"
><i class="fab fa-pinterest"></i
></a>
</div>
</div>
</div>
</section>
<section class="lower">
<div class="lower-content">
<div class="column">
<h1>【☊】</h1>
<p>Crafting Sonic Elegance for Every Listener's Delight</p>
<p>- Amplifying Emotions, One Note at a Time. -</p>
</div>
<div class="column">
<h4>Useful Links</h4>
<ul class="useful-links">
<li><a href="product.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
<div class="column">
<div class="contact-info">
<h4>Contact Us</h4>
<p>
<i class="far fa-envelope"></i>
<a href="mailto:info@tanchjimaudio.com">info@GERICS.com</a>
</p>
<p><i class="fas fa-phone"></i> +86 156 7677 2796</p>
<p>
<i class="fas fa-map-marker-alt"></i> 16 E. Redwood Drive Orlando,
FL 32806
</p>
</div>
</div>
<div class="column">
<div class="social-media">
<h4>Connect</h4>
<a href="https://www.instagram.com" class="instagram"
><i class="fab fa-instagram"></i> Follow us on Instagram</a
>
<a href="https://www.facebook.com" class="facebook"
><i class="fab fa-facebook"></i> Like our Facebook page</a
>
<a href="https://www.twitter.com" class="twitter"
><i class="fab fa-twitter"></i> Follow us on Twitter</a
>
<a href="https://www.pinterest.com" class="pinterest"
><i class="fab fa-pinterest"></i> Follow us on Pinterest</a
>
</div>
</div>
</div>
</section>
<footer>© 2024 GERICS. All rights reserved.</footer>
</body>
</html>