-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (88 loc) · 5.29 KB
/
index.html
File metadata and controls
88 lines (88 loc) · 5.29 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GYPRX5VF6V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GYPRX5VF6V');
</script>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<title>MKstar's Website</title>
<link href="tailwind_theme/tailwind.css" rel="stylesheet" type="text/css"/>
<script>
/* Pinegrow Interactions, do not remove */
(function(){
try {
if (!document.documentElement.hasAttribute('data-pg-ia-disabled')) {
window.pgia_small_mq = typeof pgia_small_mq == 'string' ? pgia_small_mq : '(max-width:767px)';
window.pgia_large_mq = typeof pgia_large_mq == 'string' ? pgia_large_mq : '(min-width:768px)';
var style = document.createElement('style');
var pgcss = 'html:not(.pg-ia-no-preview) [data-pg-ia-hide=""] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show=""] {opacity:1;visibility:visible;display:block;}';
if (document.documentElement.hasAttribute('data-pg-id') && document.documentElement.hasAttribute('data-pg-mobile')) {
pgia_small_mq = '(min-width:0)';
pgia_large_mq = '(min-width:99999px)';
}
pgcss += '@media ' + pgia_small_mq + '{ html:not(.pg-ia-no-preview) [data-pg-ia-hide="mobile"] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show="mobile"] {opacity:1;visibility:visible;display:block;}}';
pgcss += '@media ' + pgia_large_mq + '{html:not(.pg-ia-no-preview) [data-pg-ia-hide="desktop"] {opacity:0;visibility:hidden;}html:not(.pg-ia-no-preview) [data-pg-ia-show="desktop"] {opacity:1;visibility:visible;display:block;}}';
style.innerHTML = pgcss;
document.querySelector('head').appendChild(style);
}
} catch (e) {
console && console.log(e);
}
})();
</script>
</head>
<body class="text-gray-500">
<main>
<section class="bg-secondary-500 poster pt-4 relative text-opacity-60 text-white sm:px-4">
<div class="absolute bg-secondary-500 h-full inset-0 w-6/12 z-0 md:w-5/12 lg:w-4/12"></div>
<div class="container mx-auto relative">
<nav class="flex flex-wrap items-center px-4 py-2">
<a href="#" class="font-bold gap-2 hover:text-gray-300 inline-flex items-center leading-none mr-4 text-3xl text-white">
<span>MKstar's Website</span>
</a>
<button class="hover:bg-primary-500 hover:text-white ml-auto px-3 py-2 rounded text-white lg:hidden" data-name="nav-toggler">
<span class="block border-b-2 border-current my-1 w-6"></span>
<span class="block border-b-2 border-current my-1 w-6"></span>
<span class="block border-b-2 border-current my-1 w-6"></span>
</button>
<div class="flex-1 hidden space-y-2 w-full lg:flex lg:items-center lg:space-x-4 lg:space-y-0 lg:w-auto" data-name="nav-menu">
<div class="flex flex-col ml-auto lg:flex-row"></div>
</div>
</nav>
</div>
<div class="container mx-auto pb-36 pt-16 px-4 relative">
<div class="-mx-4 flex flex-wrap items-center space-y-6 lg:space-y-0">
<div class="px-4 w-full lg:w-6/12 xl:w-5/12">
<div class="-ml-4 bg-secondary-500 p-4 rounded-2xl w-10/12 sm:-ml-6 sm:p-6 md:w-7/12 lg:w-full"></div>
</div>
<div class="mx-auto px-4 w-full lg:w-6/12">
<h1 class="2xl:leading-tight 2xl:text-7xl font-bold leading-tight lg:leading-tight lg:text-6xl mb-2 md:leading-tight md:text-5xl text-4xl text-white">MKstar's Website</h1>
<p class="font-light mb-12 text-xl">Just a website for reaching out to me.</p>
<p class="font-light mb-12 text-xl">Fact: I got my name MKstar because I was really good at Mario Kart (MK).</p>
<p class="font-light mb-12 text-xl">Fact 2: Nintendo NX was the codename for Nintendo Switch before it came out.</p>
<div class="flex flex-wrap gap-4 items-center"></div>
</div>
</div>
</div>
</section>
<section class="bg-gray-800 py-16 text-center text-gray-400 sm:px-4">
<p>Epic Games: MKstarFromSwitch</p>
<p>Steam: steamgrogu</p>
<p>GitHub: MKstarFromSwitch</p>
<p>Fandom: MKstarFromNX</p>
<p>Ubisoft: MKstarFromNX</p>
<p>Switch Username: MKstar</p>
</section>
<footer class="bg-secondary-500 text-gray-400 sm:px-4">
<p>© 2023-2026 MKstar. All rights reserved.</p>
</footer>
</main>
</body>
</html>