-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
260 lines (253 loc) · 9.91 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Contact the Digital miner, send us an email"
/>
<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=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link rel="stylesheet" href="css/styles.css" />
<script
src="https://kit.fontawesome.com/43c9e5e89e.js"
crossorigin="anonymous"
></script>
<title>Contact - the Digital Miner</title>
<script src="/js/Functions/form-validation/form.js" type="module"></script>
<script src="/js/index.js" type="module"></script>
<!-- Hotjar Tracking Code for The Digital Miner -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 3858409, hjsv: 6 };
a = o.getElementsByTagName("head")[0];
r = o.createElement("script");
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, "https://static.hotjar.com/c/hotjar-", ".js?sv=");
</script>
</head>
<body>
<header>
<nav class="navbar">
<a class="nav-brand" href="index.html">
<img src="images/digitalminerlogo.jpg" alt="digitalminerlogo" />
</a>
<ul class="nav-menu">
<li class="nav-item">
<a class="nav-link" href="blogs.html">blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About us </a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="charts.html"> Charts </a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<div class="white-line"></div>
<main class="flex-wrapper">
<section>
<h1 class="title-post">Get in touch with us</h1>
<div class="contact-container">
<div class="information-container">
<p>
Our base of operation is in Norway, however we have writers from
several countries around the world
</p>
<p>
We do not have a specific office at the moment and we operate mainly
through the internet
</p>
<p>
If you would like to contact us if you have questions regarding
crypto or the Digital miner.
</p>
<p class="red">
We do not give out financial advise, so please do not reach out as
we do not answer those type of questions.
</p>
<ul>
<li class="contact-li">
<i class="fa-solid fa-location-dot"> </i> You can expect a typical
reply within 24 hours.
</li>
<li class="contact-li">
<i class="fa-solid fa-globe"></i> We have writers from all over
the world.
</li>
<li class="contact-li">
<i class="fa-regular fa-envelope"> </i> [email protected]
</li>
</ul>
<h2 class="socials-title">Find us on your favourite platform</h2>
<div class="socials">
<a href="https://www.facebook.com"
><i class="fa-brands fa-facebook"></i>
<span class="sr-only">Facebook</span>
</a>
<a href="https://www.twitter.com"
><i class="fa-brands fa-x-twitter social"></i>
<span class="sr-only">X/Twitter</span>
</a>
<a href="https://www.instagram.com"
><i class="fa-brands fa-instagram social"></i>
<span class="sr-only">Instagram</span>
</a>
<a href="https://www.linkedin.com/"
><i class="fa-brands fa-linkedin social"></i>
<span class="sr-only">Linkedin</span>
</a>
</div>
</div>
<div class="contact-form">
<h2>Contact us</h2>
<form id="form">
<div class="input-container">
<label for="name"> Name </label>
<input type="text" id="name" name="name" />
<p id="input-error-name" class="input-error"></p>
</div>
<div class="input-container">
<label for="email"> Email </label>
<input type="text" id="email" name="email" />
<p id="input-error-email" class="input-error"></p>
</div>
<div class="input-container">
<label for="subject"> Subject </label>
<input type="text" id="subject" name="subject" />
<p id="input-error-subject" class="input-error"></p>
</div>
<div class="input-container">
<label for="message"> Message </label>
<textarea
id="message"
name="message"
rows="4"
placeholder="Start writing"
>
</textarea>
<p id="input-error-message" class="input-error"></p>
</div>
<button type="submit" class="contact-submit-btn">Submit</button>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-container white-line"></div>
<div class="flex-wrapper">
<div class="footer-logo">
<img
class="image-footer"
src="/images/THEDIGITALMINERfooter.png"
alt="thedigitalminerlogofooter"
/>
</div>
<div class="footer-row">
<div class="footer-col">
<h4>Community</h4>
<ul>
<li><a href="#"> Newsletter</a></li>
<li><a href="contact.html"> Become a writer </a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="about.html"> About us </a></li>
<li><a href="#"> Terms and Agreement </a></li>
</ul>
</div>
<div class="footer-col">
<h4>Hit us up</h4>
<ul>
<li><a href="contact.html"> Contact </a></li>
<li><a href="blogs.html"> Blogs </a></li>
<li></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow us</h4>
<div class="social-links">
<a href="https://www.facebook.com/">
<i class="fa-brands fa-facebook"></i>
<span class="sr-only">Facebook</span>
</a>
<a href="https://twitter.com/home?lang=en"
><i class="fa-brands fa-x-twitter social"></i>
<span class="sr-only">Twitter/X</span>
</a>
<a href="https://www.instagram.com/"
><i class="fa-brands fa-instagram social"></i>
<span class="sr-only">Instagram</span>
</a>
<a href="https://www.linkedin.com/"
><i class="fa-brands fa-linkedin social"></i>
<span class="sr-only">Linkedin</span>
</a>
</div>
</div>
</div>
</div>
<div class="white-line"></div>
<div class="flex-wrapper">
<div class="disclaimer">
<p>
The information provided on this blog is for general informational
purposes only and should not be construed as financial advice. The
content is not intended to be a substitute for professional
financial advice, diagnosis, or treatment. Always seek the advice of
your financial advisor or other qualified financial service provider
with any questions you may have regarding your personal financial
situation.
<span class="red"
>The author of this blog is not a licensed financial advisor and
is not providing financial or investment advice</span
>. Any reliance you place on the information from this blog is at
your own risk. The blog owner and its affiliates are not responsible
for any financial decisions you make based on the information
provided. Investing and financial decisions involve risk, and past
performance is no guarantee of future results. The content on this
blog may not be up-to-date or accurate, and the author makes no
representation or warranty of any kind regarding the accuracy or
completeness of the information. Before making any financial
decisions, it is recommended that you conduct your own research and
consult with a qualified financial professional. The author
disclaims any liability for any direct or incidental loss incurred
by applying any of the information provided on this blog. By using
this blog, you agree to the terms of this disclaimer and acknowledge
that you have read and understood the information provided. If you
do not agree with these terms, please refrain from using this blog.
</p>
</div>
</div>
</footer>
</body>
</html>