-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
183 lines (172 loc) · 6.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - GeoWay</title>
<link rel="stylesheet" href="assets/css/main.css">
<noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript>
<style>
/* Estilos para el formulario */
#contact-form input,
#contact-form select,
#contact-form textarea {
width: 100%;
padding: 0.75em 1rem;
margin-bottom: 1.5rem;
border: 1px solid rgba(0,0,0,0.2);
background-color: rgba(255,255,255,0.9);
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
background-color: white;
outline-style: solid;
outline-width: thin;
outline-color: gray;
outline-offset: -1px;
}
#contact-form select {
text-transform: none;
}
#contact-form input[type="submit"],
#contact-form input[type="reset"] {
cursor: pointer;
width: auto;
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
margin-bottom: 0;
}
#contact-form input[type="submit"]:focus,
#contact-form input[type="reset"]:focus {
outline: none;
}
</style>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7SG2LKLLKE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7SG2LKLLKE');
</script>
</head>
<body class="is-preload">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">GeoWay</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="generic.html">Projects</a></li>
<li><a href="blog.html">Blog & News</a></li>
<!--<li><a href="#">Blog</a></li>-->
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
<!-- Main -->
<article id="main">
<header>
<img src="images/Logo5.png" alt="" width="10%" height="10%"/><br />
<h2>Contact</h2>
<p>Get in touch with us:</p>
</header>
<section class="wrapper style5">
<div class="inner">
<section>
<h4>Contact:</h4>
<p>You can reach out to us via email to inquire about our courses or report any issues with the training platform using the following form. We will respond to your inquiries promptly:</p>
<hr />
<!-- Formulario -->
<section>
<h4>Form</h4>
<form method="post" action="https://formspree.io/f/xbjnblbp">
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
<div class="col-12">
<select name="demo-category" id="demo-category">
<option value="">Select a category</option>
<option value="general">General information</option>
<option value="support">Projects or Technical Support</option>
<option value="treining">Information about a course or training</option>
<option value="application">Information about an application or use case</option>
</select>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
<label for="demo-priority-low">Low</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-normal" name="demo-priority">
<label for="demo-priority-normal">Normal</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-high" name="demo-priority">
<label for="demo-priority-high">High</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-copy" name="demo-copy">
<label for="demo-copy">Email me a copy</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-human" name="demo-human" checked>
<label for="demo-human">Not a robot</label>
</div>
<div class="col-12">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
</section>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>© 2024 GEOWAY, <a href="https://geo-way.github.io/GeoWay.io/">Technology-Based initiative - IBT.</a> </li> <li>All rights reserved. </li><br>
Berlin - Germany
<li><a href="privacy.html">Privacy Policy</a><li></ul>
<img src="images/Logo5.png" alt="" width="10%" height="10%"/><br />
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>