-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (86 loc) · 2.11 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
<style>
/* Your styles from the original code */
@font-face {
font-family: "Computer Modern Serif";
src: url("fonts/cmu.serif-roman.ttf");
}
body {
font-family: "Computer Modern Serif";
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.header-portfolio {
display: flex;
align-items: center;
justify-content: flex-start;
}
#logo {
height: 65px;
}
section {
margin-bottom: 1rem;
text-align: center;
}
h1 {
font-size: 2rem;
text-align: center;
margin-top: 0.5rem;
}
footer {
background-color: #f8f9fa;
padding: 50px; /* Increase the height of the footer */
text-align: center;
margin-top: auto;
}
.social-icons a {
margin: 0 10px;
}
.social-icons img {
width: 30px;
height: 30px;
}
</style>
</head>
<body>
<header>
<div class="header-portfolio">
<img src="images/main.png" alt="My Logo" id="logo">
</div>
<img src="images/darkmode.png" alt="Dark Mode" id="dark-mode-button">
</header>
<main>
<h1>Ilya De Groeve</h1>
<section id="about">
<p></p>
</section>
</main>
<footer>
<div class="social-icons">
<a href="https://www.linkedin.com/in" target="_blank">
<img src="images/logo/linkedin.png" alt="LinkedIn">
</a>
<a href="https://twitter.com" target="_blank">
<img src="images/logo/twitter.png" alt="Twitter">
</a>
<a href="mailto:[email protected]">
<img src="images/logo/gmail.png" alt="Gmail">
</a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>