forked from fdnd-task-archive/the-startup-coding-the-curbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
141 lines (141 loc) · 4.11 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
<!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="Coding the Curbs website.">
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/contact.css" />
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<title>Coding the Curbs | Contact</title>
</head>
<body>
<header class="primary-header">
<a class="links" href="index.html#hero">
<img class="logo" src="assets/ctc-primary-logo-black.svg" alt="logo">
</a>
<nav>
<ul class="primary-navigation">
<li>
<a class="links hover-color" href="index.html#use-cases">
Use-cases
</a>
</li>
<li>
<a class="links hover-color" href="index.html#product">
Product
</a>
</li>
<li>
<a class="links hover-color" href="index.html#services">
Services
</a>
</li>
<li>
<a class="links hover-color" href="index.html#updates">
Updates
</a>
</li>
<li>
<a class="links hover-color" href="index.html#about">
Over ons
</a>
</li>
<li>
<a class="hover-color active-contact-link" href="contact.html">
Contact
</a>
</li>
<button class="cta-gradient">
<a class="text-white" href="contact.html">
Sluit je aan
</a>
</button>
<select>
<option lang="nl">NL</option>
<option lang="en">EN</option>
<!-- Andere talen opties -->
</select>
</ul>
</nav>
</header>
<main>
<section class="contact">
<h1>Contact</h1>
<p>Wij zijn altijd op zoek naar innovators en challengers. Wij zoeken mensen die vooruit durven te
lopen en graag bouwen aan de slimme stad. Wij praten graag met je verder. Neem contact met
ons op via het onderstaande formulier of vraag direct een opportunity scan aan.
</p>
</section>
<section class="contact-form">
<form action="#" method="POST">
<Label for="name">Naam:</Label>
<input type="text" id="name" required>
<Label for="e-mail">E-mail:</Label>
<input type="email" id="email" required>
<Label for="company">Bedrijf:</Label>
<input type="text" id="company">
<Label for="message">Bericht:</Label>
<textarea name="message" id="message" placeholder="Typ hier een bericht..." cols="20" rows="15" required></textarea>
<br>
<button class="contact-button cta-gradient">
<a href="#">Verstuur</a>
</button>
</form>
</section>
</main>
<footer>
<div class="footer-content">
<a href="index.html#hero">
<img class="logo-footer" src="assets/CTC_Primary_Logo_White.svg" alt="logo">
</a>
<p>All rights reserved © 2021 </p>
<a href="http://www.fronteer.com" target="_blank">fronteer</a>,
<a href="https://www.codingthecurbs.com/copy-of-roll-out-plan?lang=nl" target="_self">Privacy statement</a>
</div>
<ul class="footer-navigation">
<li>
<a class="footer-link" href="index.html#use-cases">
Use-cases
</a>
</li>
<li>
<a class="footer-link" href="index.html#product">
Product
</a>
</li>
<li>
<a class="footer-link" href="index.html#services">
Services
</a>
</li>
<li>
<a class="footer-link" href="index.html#updates">
Updates
</a>
</li>
<li>
<a class="footer-link" href="index.html#about">
Over ons
</a>
</li>
<li>
<a class="footer-link" href="contact.html">
Contact
</a>
</li>
</ul>
<div class="logos-footer">
<img class="logo-fronteer" src="https://static.wixstatic.com/media/21dd0d_93ea25df766a4b708c7095e76057a346~mv2.png/v1/fill/w_118,h_25,al_c,q_95/Logo%20White%20RGB.webp" alt="">
<img src="https://static.wixstatic.com/media/21dd0d_1cf6e7b130544d54ae553ea81a58257d~mv2.png/v1/fill/w_113,h_50,al_c,q_95/Logo%20FMN%20white.webp" alt="">
</div>
<button class="footer-button cta-gradient">
<a href="contact.html">
Sluit je aan
</a>
</button>
</footer>
</body>
</html>