-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (89 loc) · 2.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #2c3e50, #34495e);
color: #ecf0f1;
}
header {
text-align: center;
padding: 50px 20px;
background: #1abc9c;
}
header h1 {
font-size: 3em;
margin: 0;
}
header p {
font-size: 1.2em;
margin-top: 10px;
}
.container {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.section {
margin: 40px 0;
}
.section h2 {
font-size: 2em;
margin-bottom: 10px;
}
footer {
text-align: center;
padding: 20px;
background: #1abc9c;
position: absolute;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}
a {
color: #16a085;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Portfolio</h1>
<p>Exploring life one hobby at a time</p>
</header>
<div class="container">
<div class="section">
<h2>About Me</h2>
<p>Hello! I’m a passionate individual who loves diving into creative and enriching activities. This space is where I share a little about myself and the hobbies that bring me joy.</p>
</div>
<div class="section">
<h2>Hobbies</h2>
<ul>
<li>🌱 <strong>Gardening:</strong> Cultivating plants and creating serene outdoor spaces.</li>
<li>🎨 <strong>Painting:</strong> Bringing imagination to life with colors and brushes.</li>
<li>📚 <strong>Reading:</strong> Losing myself in captivating stories and exploring new worlds.</li>
<li>🚴 <strong>Cycling:</strong> Exploring nature trails and staying active.</li>
<li>🎵 <strong>Music:</strong> Playing guitar and discovering new melodies.</li>
</ul>
</div>
<div class="section">
<h2>Contact</h2>
<p>Have similar interests or just want to connect? Reach out via <a href="mailto:h@wutheringheights.ai">email</a> or find me on <a href="https://github.com/username">GitHub</a>.</p>
</div>
</div>
<footer>
<p>© 2024 Personal Portfolio. All rights reserved.</p>
</footer>
</body>
</html>