-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (102 loc) · 4 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>Adil's webpage</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Adil Naqvi" />
<meta name="description" content="Hello, I'm Adil. I make websites" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Adil's webpage" />
<meta property="og:url" content="https://adilnaqvi.com/" />
<meta property="og:image" content="https://adilnaqvi.com/og-v4.webp" />
<meta property="og:description" content="Hello, I'm Adil. I make websites" />
<meta name="twitter:title" content="Adil's webpage" />
<meta name="twitter:creator" content="@notadilnaqvi" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="adilnaqvi.com" />
<meta property="twitter:url" content="https://adilnaqvi.com/" />
<meta name="twitter:image" content="https://adilnaqvi.com/og-v4.webp" />
<meta name="twitter:description" content="Hello, I'm Adil. I make websites" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<style>
@media (prefers-color-scheme: dark) {
body {
color: #e3e3e3;
background: #282828;
}
a {
color: #5cd5fb;
outline-color: #5cd5fb;
}
}
</style>
</head>
</head>
<body style="font-family: serif">
<main>
<h1>Welcome to Adil's webpage</h1>
<img height="128" width="128" src="think.webp" alt="Adil in a chess tournament" />
<section>
<h2>About me</h2>
<ul>
<li>Hello, I'm Adil</li>
<li>I make websites</li>
<li>I'm based in Rawalpindi, Pakistan</li>
<li>I like beef pulao, Modern Family, Stardew Valley, and graphics designing</li>
</ul>
</section>
<section>
<h2>What I'm upto</h2>
<ul>
<li>I'm currently watching Bridgerton</li>
<li>I'm learning how to be decent at chess</li>
<li>
I've been listening to
<a href="https://open.spotify.com/playlist/1ATUGf1cKajHaxiFQkkGXM" rel="noopener noreferrer" target="_blank">old Bollywood remixes</a>
</li>
</ul>
</section>
<section>
<h2>Find me on the interwebs</h2>
<ul>
<li>
Get in touch –
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
See the kinda code I write –
<a href="https://github.com/notadilnaqvi" rel="noopener noreferrer" target="_blank"> github.com/notadilnaqvi </a>
</li>
<li>
See me Tweet about code and chess –
<a href="https://twitter.com/notadilnaqvi" rel="noopener noreferrer" target="_blank"> twitter.com/notadilnaqvi </a>
</li>
<li>
See me be mediocre at chess –
<a href="https://www.chess.com/member/notadilnaqvi" rel="noopener noreferrer" target="_blank"> chess.com/member/notadilnaqvi </a>
</li>
<li>
See work experience and education –
<a href="https://www.linkedin.com/in/notadilnaqvi" rel="noopener noreferrer" target="_blank"> linkedin.com/in/notadilnaqvi </a>
</li>
<li>
See some graphics design work I've done –
<a href="https://www.behance.net/notadilnaqvi" rel="noopener noreferrer" target="_blank"> behance.net/notadilnaqvi </a>
</li>
</ul>
</section>
<hr />
<marquee behavior="alternate" direction="right"> Thanks for visiting :) </marquee>
<hr />
<p>[10-Jun-2024]</p>
</main>
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register("sw.js");
}
</script>
</body>
</html>