-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 3.06 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
<!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">
<title>Personal website David Van Melkebek</title>
<link href="https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&family=Heebo:wght@300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="container">
<p id="brand"><a href="index.html">David</a></p>
<p id="socials">
<a href="https://github.com/iam-davidvm" target="_blank">
<i class="fa-brands fa-square-github fa-2xl"></i>
</a>
<a href="https://www.linkedin.com/in/david-van-melkebeke-a73b317/" target="_blank">
<i class="fa-brands fa-linkedin fa-2xl"></i>
</a>
</p>
</nav>
<div id="hero" class="container">
<p id="hero-title">I am a work in progress till eternity and this is my construction site</p>
<p id="hero-body">This is my current presentation as a web developer in training. Feel free to contact me if you are interested in my services.</p>
<img id="hero-image" src="images/crane.png" alt="a crane holding <david>">
</div>
</header>
<main>
<div class="container">
<h1>Posts</h1>
<div id="filter">
<select name="categories" id="select-categories" aria-placeholder="search in categories" aria-live="polite">
</select>
<input type="text" name="search" id="search" placeholder="Search" aria-live="polite">
</div>
<section id="posts" aria-live="polite">
</section>
<section id="pager">
<button class="pagination" id="prev-button" title="Previous page" aria-label="Previous page">
<
</button>
<div id="pagination-numbers" aria-live="polite">
</div>
<button class="pagination" id="next-button" title="Next page" aria-label="Next page">
>
</button>
</section>
</div>
</main>
<footer>
<div class="container">
<p>For now this is the only content, stay tuned if you like my work.
Or send me an e-mail.</p>
<a href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i></a>
<p id="credit"><a href="https://www.freepik.com/free-vector/construction-crane-concept-illustration_28205222.htm#query=Construction%20crane%20concept%20illustration&position=4&from_view=search" target="_blank">Home page hero image by storyset on Freepik</a>Others by Unsplash</p>
</div>
</footer>
<script src="js/app.js"></script>
</body>
</html>