-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (105 loc) · 5.24 KB
/
index.html
File metadata and controls
114 lines (105 loc) · 5.24 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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">
<title>MTT One</title>
<link rel="stylesheet" href="/v5/v5_style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="/assets/mtt-favicon.ico" />
<meta name="title" content="MTT One - A hub of all projects by MTT.">
<meta name="description" content="A hub of all projects by MTT.">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="31 days">
<meta name="author" content="Mr Techtroid">
<link rel="icon" type="image/x-icon" href="/assets/mtt_favicon.ico">
<!-- <meta http-equiv="refresh" content="0;url=/v4/" /> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.4/gsap.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/mouse-follower@1/dist/mouse-follower.min.css">
<script src="https://unpkg.com/mouse-follower@1/dist/mouse-follower.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KPN8JSN6DJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-KPN8JSN6DJ');
</script>
<style>
#container {
min-height: 80vh;
background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.skill_card:hover {
filter: grayscale(1);
}
</style>
</head>
<body id = "mainpage" onLoad="setTimeout('delayer()', 30000)" style="display: flex;flex-direction: column;align-items: center;justify-content: center;width:100vw;height:100vh;">
<div id="container" class="card" style="border:2px #122235 solid;border-radius: 10px;">
<div style="display: flex;flex-direction: column;align-items: center;color:#122235">
<h1 style="margin:0px;">
<a href="https://mtt.one" style="margin:5px;padding:5px;text-decoration: none;color:#122235;display: flex;flex-direction: row;flex-wrap: nowrap;align-items: center;font-size: 50px;">
<img style="width:1vw;min-width: 100px;" src="assets/mtt-new-logo.png" alt="MTT One" />One
</a>
</h1>
<center style="width:30vw;font-size: 12px;min-width: 300px;"><span>A hub of all projects by MTT.</span>
</center>
<hr style="width: 100%;" color="black">
<center style="font-size: 20px;"><span>My Projects</span></center>
<div style="display: flex;flex-direction: row;flex-wrap:wrap;justify-content: center;">
<div class="skill_card">
<a href="/partners/superbull.html">
<img src="assets/SB.png" style="width: 100px;">
</a>
<center><span>Superbull</span></center>
</div>
<div class="skill_card">
<a href="https://mtt.one">
<img src="https://mtt.one/light.png" style="width: 100px;">
</a>
<center><span>Mr Techtroid</span></center>
</div>
<div class="skill_card">
<a href="/v5/">
<img src="assets/mtt-new-logo.png" style="width: 100px;">
</a>
<center><span>Old Portfolio(v5)</span></center>
</div>
<div class="skill_card">
<a href="/quarkz/index.html">
<img src="assets/Quarkz-T.png" style="width: 100px;">
</a>
<center><span>Quarkz!</span></center>
</div>
</div>
<center style="width:30vw;font-size: 12px;min-width: 300px;"><span>You will be redirected to My Portfolio(MTT)
within 30 seconds.</span></center>
<center style="width:30vw;font-size: 12px;min-width: 300px;"><span>(C) Copyright 2023 MTT One</span>
</center>
</div>
</div>
<script type="text/javascript">
function delayer() {
window.location = "https://mtt.one"
}
</script>
<script>
var cursor = new MouseFollower();
</script>
<!-- Please Note: This Page is a placeholder to redirect to the latest version of the site -->
</body>
</html>