-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luca Valente - Personal Website</title>
<style>
/* Add your CSS styles here */
body {
font-family: 'Arial', sans-serif;
margin: 20px;
}
/* Add more styles as needed */
</style>
</head>
<body>
<header>
<h1>Your Name</h1>
<p>Web Developer | Designer | Your Tagline</p>
</header>
<section>
<h2>About Me</h2>
<p>
Briefly introduce yourself, your background, and your interests. Mention your skills and what you're passionate about.
</p>
</section>
<section>
<h2>Projects</h2>
<p>
Showcase some of your notable projects. Include project names, descriptions, and links if applicable.
</p>
</section>
<section>
<h2>Contact</h2>
<p>
Provide ways for visitors to get in touch with you. This could include your email, social media links, or a contact form.
</p>
</section>
<footer>
<p>© 2024 Your Name. All rights reserved.</p>
</footer>
</body>
</html>