-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.32 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>My Portfolio</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background: #333; color: white; padding: 1em; text-align: center; }
section { padding: 2em; }
footer { background: #333; color: white; text-align: center; padding: 1em; position: fixed; width: 100%; bottom: 0; }
.container { max-width: 800px; margin: 0 auto; }
h1, h2 { margin: 0; }
p { margin: 0.5em 0; }
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</header>
<section>
<div class="container">
<h2>About Me</h2>
<p>Welcome to my portfolio website! Here you'll find information about my work and projects.</p>
<h2>Projects</h2>
<p>Project 1: Description of your first project.</p>
<p>Project 2: Description of your second project.</p>
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</section>
<footer>
<p>© 2024 My Portfolio</p>
</footer>
</body>
</html>