-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (37 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Home</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Include Header -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h1>Welcome to My Website</h1>
<p>Hi, I'm [Your Name], a [Your Profession].</p>
</section>
<!-- Include Footer -->
<footer>
<p>© 2024 Vedran Jagodnik</p>
<div class="social-icons">
<a href="https://twitter.com/yourprofile" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/yourprofile" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/yourusername" target="_blank"><i class="fab fa-github"></i></a>
</div>
<p><a href="https://github.com/yourusername/yourrepository">GitHub Repository</a></p>
</footer>
</body>
</html>