-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
52 lines (52 loc) · 1.11 KB
/
about_me.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: lightblue;
}
h1 {
text-align: center;
color: white;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 200px;
height: 200px;
border-radius: 50%;
}
p {
text-align: center;
color: black;
}
ul {
list-style-type: none;
display: flex;
justify-content: center;
}
li {
margin: 10px;
}
a {
text-decoration: none;
color: white;
background-color: darkblue;
padding: 5px;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>About Me</h1>
<img src="your_photo.jpg" alt="Your photo">
<p>Hi, I'm John Doe, a web developer and a mystery lover. I created this website to share some of my secrets and puzzles with you. Can you find them all?</p>
<ul>
<li><a href="https://twitter.com/your_username">Twitter</a></li>
<li><a href="https://github.com/your_username">GitHub</a></li>
<li><a href="https://your_blog.com">Blog</a></li>
</ul>
</body>
</html>