-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.html
More file actions
40 lines (36 loc) · 1.57 KB
/
mobile.html
File metadata and controls
40 lines (36 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aditya Madan - Mobile Notification</title>
<link href="https://api.fontshare.com/v2/css?f[]=panchang@500,800&f[]=satoshi@400,401,700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="https://kit.fontawesome.com/c416e79406.js" crossorigin="anonymous"></script>
<style>
body {
font-family: 'Satoshi', sans-serif;
background-color: #000;
color: #fff;
text-align: center;
padding: 20px;
}
.red-color {
color: #F06543;
}
</style>
</head>
<body class="bg-black text-white">
<div class="absolute top-5 right-5 z-20">
</div>
<section class="relative">
<div class="flex flex-col items-center justify-center h-screen text-white relative" style="z-index: 10;">
<h1 class="text-4xl font-bold mb-4 red-color">Mobile Notification</h1>
<p class="text-xl">This website is not optimized for mobile devices.</p>
<p class="text-xl">Please visit from a laptop or desktop for the best experience.</p>
<a href="https://github.com/Aditya10801" class="mt-4 inline-block bg-white text-black py-2 px-4 rounded-full border-2 border-white hover:bg-white hover:text-black">Visit Github <i class="fa fa-github"></i></a>
</div>
</section>
</body>
</html>