-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojecten.html
More file actions
51 lines (51 loc) · 1.57 KB
/
projecten.html
File metadata and controls
51 lines (51 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./styles/normalize.css" />
<link rel="stylesheet" href="./styles/stylesheet.css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto"
rel="stylesheet"
/>
<title>Vincent Dewilde</title>
</head>
<body>
<header class="header">
<a href="./index.html" class="home">Vincent Dewilde</a>
<nav>
<ul>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./projecten.html">Projecten</a></li>
<li><a href="./bio.html">Bio</a></li>
</ul>
</nav>
</header>
<main>
<img id="soon" src="./images/coming soon.gif" alt="gif coming soon">
</main>
<footer>
<h3>Social media</h3>
<ul class="footer">
<li>
<a href="https://www.facebook.com/vincent.dewilde.58"
><img src="./images/facebook-icon.png" alt="facebook icon"
/></a>
</li>
<li>
<a href="https://www.google.be"
><img src="./images/linkedin-icon.png" alt="linkedin icon"
/></a>
</li>
<li>
<a href="https://www.instagram.com/vincent_dewilde/"
><img src="./images/instagram-icon.png" alt="instagram icon"
/></a>
</li>
</ul>
</footer>
</body>
</html>