-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Offbeat</title>
<link rel="icon" type="image/x-icon" href="./favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="posts.css">
<link rel="stylesheet" href="./home.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=JetBrains+Mono&display=swap');
</style>
</head>
<body>
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<a class="nav-title" href="./index.html">
Offbeat
</a>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="./games.html">Games</a>
<a href="./movies.html">Movies</a>
<a href="./music.html">Music</a>
<a href="./index.html">About</a>
</div>
</div>
<hr>
<h1>Offbeat</h1>
<div class="content">
<p>
Offbeat isn't really a review site. Think of it more like a curation of interesting experiences. This
is also the reason why you'll probably never find a rating of less than 3/5 on this website; almost everything on
here is worth trying out at least once in my opinion.
</p>
<p>
Offbeat is run by me, <a target="_blank" href="https://www.instagram.com/nsoumyadip05/">Soumyadip Niyogi</a>. If
you have any suggestions for me to try out, you can reach me at <a target="_blank"
href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</body>
</html>