-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
59 lines (59 loc) · 2.06 KB
/
template.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
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<!--Basic meta tags-->
<meta charset="UTF-8" />
<title>Yosef Saleh | Coder & Gamer</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" />
<!--Open Graph meta tags-->
<meta property="og:title" content="Yosef Saleh | Coder & Gamer" />
<meta property="og:url" content="https://yosefsaleh.com/" />
<meta property="og:image" content="https://yosefsaleh.com/images/og.jpg" />
<!--Tailwind libary-->
<script src="https://cdn.tailwindcss.com/3.3.5"></script>
</head>
<body class="antialiased h-full bg-white text-slate-900">
<header class="p-4 border-b">
<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 transition-colors duration-150"
>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>
</header>
<section class="p-4">
<div class="max-w-6xl mx-auto">
<!--CONTENT GOES HERE-->
</div>
</section>
</body>
</html>