-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/indexStyle.css">
<script src="js/index.js"></script>
</head>
<body>
<h1>Portifolio Home Page</h1>
<header>
<section id="introduction">
<h2>Welcome to My Portfolio</h2>
<p>Hello and welcome to my portfolio website. My name is Marcus Frørup Nielsen, and I'm a passionate developer and technology enthusiast. Here you'll find information about me, my projects, and my journey in the world of programming.</p>
<p>Throughout my career, I've had the opportunity to work on a variety of exciting projects, ranging from web development to machine learning applications. I'm constantly exploring new technologies and techniques to expand my skill set and create innovative solutions.</p>
<p>On this website, you'll find details about my educational background, professional experience, and the projects I've worked on. Whether you're a fellow developer, potential employer, or simply curious about technology, I hope you'll find something of interest here.</p>
<p>Feel free to explore and get to know more about me and the work I've done. If you have any questions or would like to collaborate on a project, don't hesitate to reach out!</p>
</section>
</header>
<nav>
<ul id="navbar">
<li><a href="resume.html"><img src="img/availability-svgrepo-com.svg" alt="resumeIcon"><a>Resume</a></a></li>
<li><a href="projects.html"><img src="img/dns-svgrepo-com.svg" alt="projectsIcon"><a>Projects</a></a></li>
<li><a href="#" onclick="openContactPopup()"><img src="img/mail-reception-svgrepo-com.svg" alt="contactIcon"><a>Contact info</a></a></li>
</ul>
</nav>
<footer>
<p>© 2024 Marcus Frørup Nielsen - Hosted on a Raspberry Pi</p>
</footer>
</body>
</html>