-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutMe.html
More file actions
50 lines (50 loc) · 1.41 KB
/
AboutMe.html
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
}
.content {
width: 80%;
margin: 20px auto;
background: #fff;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #333;
color: #fff;
margin: 5px;
padding: 10px;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Will soon update the site</h1>
<div class="content">
<p>My personal goal for the resume website is:</p>
<ul>
<li>To improve the design of the site, learn and make it interactive.</li>
<li>Add the projects made and create new projects.</li>
<li>Full update about me, my hobbies, my powerful watch recommendations - includes anime, web series, movies in beautiful ways.</li>
</ul>
</div>
</body>
</html>