forked from fdnd-task/the-client-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
41 lines (41 loc) · 1.48 KB
/
about.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
<!DOCTYPE html>
<html lang="nl"></html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Coding the Curbs</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a class="logo" href="/"><img src="images/ctc_logo.jpg" alt="logo"></a>
<nav>
<ul class="nav__links">
<li><a href="#">Services</a></li>
<li><a href="maps.html">Locaties</a></li>
<li><a href="about.html">Over ons</a></li>
</ul>
</nav>
<a class="cta" href="#">Contact</a>
<p class="menu cta">Menu</p>
</header>
<div class="overlay">
<a class="close">×</a>
<div class="overlay__content">
<a href="#">Services</a>
<a href="maps.html">Locaties</a>
<a href="about.html">Over ons</a>
<a class="cta" href="#">Contact</a>
</div>
</div>
<h1>Over ons</h1>
<h3>Wat we doen</h3>
<script type="text/javascript" src="mobile.js"></script>
<div class="footer">
<p>CTC</p>
</div>
</body>
</html>