-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
47 lines (43 loc) · 1.42 KB
/
Copy pathabout.html
File metadata and controls
47 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
<link href="../assets/css/style.css" rel="stylesheet">
<link href="../assets/css/mystyle.css" rel="stylesheet">
</head>
<body>
<div id="title-bar-container"></div>
<script>
// Fetch and append the title bar content dynamically
const titleBarContainer = document.getElementById('title-bar-container');
fetch('../TitleBar.html')
.then(response => response.text())
.then(html => {
titleBarContainer.innerHTML = html;
});
</script>
<div class="content">
<h1 class="contentTitle">About me</h1>
<p>
My name is Ugo Novello (aka Laggrif). I am a 21-year-old student in second year of a Bachelor's degree in Computer Science at EPFL.
<br>
My main interests are:
<ul>
<li>Mobile Applications (Android only)</li>
<li>Game development</li>
<li>Machine learning</li>
<li>3D modeling</li>
<li>Programming in general</li>
</ul>
</p>
<div style="height: 50px"></div>
<h1 class="contentTitle">Why this website</h1>
<p>
I created this website to showcase my projects and eventually attract people to what I do.
<br>
This website is currently a work in progress, so do not expect it to be perfect but I will try to improve it over time and respond to any feedback I get.
</p>
</div>
</body>
</html>