-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.16 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 Personal Profile</title>
</head>
<body>
<header>
<h1>Welcome to My Personal Profile</h1>
</header>
<section>
<h2>About Me</h2>
<p>Hello! My name is Florence. I am passionate about technology and learning new skills. In my free time, I enjoy coding, trying out new recipes, and outdoor activities.</p>
</section>
<section>
<h2>Hobbies</h2>
<ul>
<li>Web Development</li>
<li>Listening to Music</li>
<li>Cooking</li>
<li>Journaling</li>
</ul>
</section>
<section>
<h2>My Favorite Quote</h2>
<blockquote>Be who you are and if you see soomething you want take it!</blockquote>
</section>
<section>
<h2>Contact Me</h2>
<p>If you you would like to get in touch, you can send me an email at <a href="mailto: [email protected]"> [email protected]</a>.</p>
</section>
<footer>
<p>© 2024 Florence. All rights reserved.</p>
</footer>
</body>
</html>