-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (75 loc) · 2.77 KB
/
index.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
<!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">
<link rel="stylesheet" href="css/style.css">
<title>Portfolio Website Christian Hogendoorn</title>
</head>
<body>
<header>
<h1>Portfolio Website</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="index.html#General">General</a>
<a href="index.html#Ratings">Projects</a>
<a href="index.html#Links">Links</a>
</nav>
<main>
<section class="white">
<a name="General"></a>
<h2>General</h2>
<section class="whiteblock">
<div class="text">
<h4>Some facts about me</h4>
<p>Name: Christian Hogendoorn</p>
<p>Age: 21</p>
<p>Lives in: Gouda</p>
<p>Hobbys:</p>
<ul>
<li>Playing games</li>
<li>Coding</li>
<li>Playing Yugioh</li>
</ul>
<p>I am currently studying CMGT because I'd like to learn how to become a web developer</p>
</div>
</section>
</section>
<section>
<a name="Ratings"></a>
<h2>Projects I worked on in school</h2>
<section class="whiteblock">
<img src="img/hbpv.png">
<div class="text">
<h4>Productfinder</h4>
<p>This project was made to help older people find products in the supermarket</p>
</div>
</section>
</section>
<section class="whiteblock">
<img src="img/offerte.png">
<div class="text">
<h4>Quotation page</h4>
<p>This page was made to help a carpenter get more clients via the internet</p>
</div>
</section>
<section class="whiteblock">
<img src="img/company.png">
<div class="text">
<h4>Music company</h4>
<p>This website was made to practice web designing skills</p>
</div>
</section>
</main>
<footer>
<a name="Links"></a>
<section class="botnav">
<a class="link" href="https://www.instagram.com/christian._.h_/"target="_blank">Instagram</a>
<a class="link"href="https://github.com/Moonsolos"target="_blank">Github</a>
<a class="link"href="https://www.twitch.tv/moonsolss"target=_blank>Twitch</a>
</section>
</footer>
</body>
</html>