-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
66 lines (61 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Your Name - Home</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header, footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
}
main {
margin: 20px;
}
.content-section {
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Personal Website</h1>
</header>
<main>
<div class="content-section">
<h2>About Me</h2>
<p>Your introduction goes here.</p>
</div>
<div class="content-section">
<h2>Projects</h2>
<!-- List your projects here -->
<p>Project1</p>
</div>
<div class="content-section">
<h2>CV</h2>
<p><a href="CV_ljk.pdf" target="_blank">Open my CV</a></p>
</div>
<div class="content-section">
<h2>Contact</h2>
<!-- Your contact information goes here -->
</div>
</main>
<footer>
<p>© 2023 Your Name</p>
</footer>
<script>
// Simple script to show interactivity
document.querySelector('header').addEventListener('click', () => {
alert('Header clicked!');
});
</script>
</body>
</html>