-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="df_logo.png" type="image/x-icon">
<meta property="og:title" content="DevForces">
<meta property="og:description" content="Compete with your dev skills! ⚔️">
<meta property="og:image" content="https://devforces.in/df_logo_256.png">
<meta property="og:url" content="devforces.in">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Coding Bad">
<title>DevForces</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Protest+Revolution&display=swap');
</style>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily:{
'protest-revolution': 'Protest Revolution', 'sans-serif'
}
}
}
}
</script>
</head>
<body class="h-screen w-screen bg-black overflow-hidden">
<div class="w-full h-screen flex items-center justify-center flex-col p-10 transform -translate-y-8">
<img src="coding-bad.webp" alt="Coding Bad" class="rounded-lg md:w-1/2" />
<div class="mt-6 text-2xl md:text-4xl text-white text-protest-revolution" style="font-family: 'Protest Revolution';">something's cookin...</div>
</div>
</body>
</html>