-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
67 lines (65 loc) · 2.46 KB
/
about.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
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<title>About | Yosef Saleh</title>
<meta name="description" content="I like to code and play games" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width,intial-scale=1" />
<meta property="og:title" content="About | Yosef Saleh" />
<meta property="og:url" content="https://yosefsaleh.com/" />
<meta property="og:image" content="https://yosefsaleh.com/images/og.jpg" />
<script src="https://cdn.tailwindcss.com/3.3.5"></script>
</head>
<body>
<div
class="h-screen bg-[url('images/backgroundy.jpg')] bg-center bg-cover px-28 py-5"
>
<nav class="flex">
<ul class="flex-1 text-center">
<li class="list-none inline-block px-5">
<a
href="index.html"
class="hover:bg-slate-100 px-2.5 py-1.5 rounded-lg transition-colors duration-150"
>Home</a
>
</li>
<li class="list-none inline-block px-5">
<a
href="about.html"
class="hover:bg-slate-100 px-2.5 py-1.5 rounded-lg bg-gray-200"
>About</a
>
</li>
<li class="list-none inline-block px-5">
<a
href="https://github.com/RedXin20"
target="_blank"
class="hover:bg-slate-100 px-2.5 py-1.5 rounded-lg transition-colors duration-150"
>Github
</a>
</li>
<li class="list-none inline-block px-5">
<a
href="projects.html"
class="hover:bg-slate-100 px-2.5 py-1.5 rounded-lg transition-colors duration-150"
>Projects</a
>
</li>
</ul>
</nav>
<div class="mt-48 max-w-lg">
<h1 class="text-6xl font-semibold leading-normal">Who Am I?<br /></h1>
<p>
I'm Yosef, currently self-studying programming to create anything I
desire in the digital world. My primary focus is on studying
JavaScript. Besides programming, I have a strong interest in learning
human languages, media like Anime and playing games. I also regularly
work out, giving me some knowledge and understanding in that area as
well. Travelling is also something that I would like to explore in my
life!
</p>
</div>
</div>
</body>
</html>