-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (93 loc) · 4.45 KB
/
index.html
File metadata and controls
95 lines (93 loc) · 4.45 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=https://arnav-effect.github.io">
<meta name="title" content="Its Acromatic - Arnav Mishra's Personal Website">
<meta name="description" content="Welcome to Its Acromatic! Explore the personal portfolio of Arnav Mishra, featuring projects, blog posts, favorite music, and more.">
<meta name="keywords" content="Its Acromatic, Arnav Mishra, personal website, portfolio, blog, projects, music, web development">
<meta name="author" content="Arnav Mishra">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Its Acromatic - Arnav Mishra's Personal Website">
<meta property="og:description" content="Explore the world of Arnav Mishra, his projects, thoughts, and favorite music on Its Acromatic.">
<meta property="og:image" content="https://its-acromatic.github.io/assets/preview.jpg">
<meta property="og:url" content="https://its-acromatic.github.io">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Its Acromatic - Arnav Mishra's Personal Website">
<meta name="twitter:description" content="Discover the projects, blog posts, and music collection of Arnav Mishra.">
<meta name="twitter:image" content="https://its-acromatic.github.io/assets/preview.jpg">
<meta property="theme-color" content="#121121">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://its-acromatic.github.io/style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik+Vinyl&display=swap');
</style>
</head>
<body>
<div class="center">
<div>
<h1 style="font-family: Rubik Vinyl; color: #3328d1">Acromatic</h1>
<p>-> I am Arnav Mishra, age..DON'T ASK! (By the way its 14).</p>
<p>-> A crazy tech enthusiast</p>
<p>-> Tests things beyond limits...</p>
<p>-> A thing called computer distracted me..</p><br>
<a href="https://its-acromatic.github.io/site-nav"> -Site Navigation- </a>
</div>
<div>
<h4>My ongiong projects:</h4>
<a href="https://github.com/its-acromatic/acromatic-website-project">-> Acromatic Website Project </a> <br>
<p>Click <a href="https://its-acromatic.github.io/projects">Here</a> To See All Projects </p> <br>
</div>
<div>
<h4>You can find me at:</h4>
<a href="https://github.com/its-acromatic/">-> Github - its-acromatic</a> <br>
<a href="https://twitter.com/Arnav_Mishra11">-> Twitter - @Arnav_Mishra11 </a> <br>
<a href="https://discord.com/users/1276765112014999557">-> Discord - its_acromatic_arnav.mishra</a> <br>
<a href="mailto:acromatic121@gmail.com">-> Email - acromatic121@gmail.com</a> <br>
<a href="https://bsky.app/profile/its-acromatic.github.io">-> BlueSky - @its-acromatic.github.io </a> <br>
</div>
<hr>
<div>
<h4>Click <a href="https://its-acromatic.github.io/fav-music">Here</a> if you want to see my Fav Music/Songs</h4>
<hr>
<h4>Some useful posts:</h4>
<a href="https://its-acromatic.github.io/">-> Nothing useful for now... </a> <br>
</div>
<p>Bye Bye! 👋</p>
</div>
</body>
<script>
document.addEventListener('copy', function(e) {
e.preventDefault();
e.clipboardData.setData('text/plain', 'DO NOT TRY TO COPY!!!');
});
</script>
<script>
// Disable Right Click + Keyboard Shortcuts + Basic Protection
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
});
document.onkeydown = function(e) {
if (e.keyCode == 123) { // F12
return false;
}
if (e.ctrlKey && e.shiftKey && (e.keyCode == 'I'.charCodeAt(0))) { // Ctrl+Shift+I
return false;
}
if (e.ctrlKey && e.shiftKey && (e.keyCode == 'J'.charCodeAt(0))) { // Ctrl+Shift+J
return false;
}
if (e.ctrlKey && (e.keyCode == 'U'.charCodeAt(0))) { // Ctrl+U
return false;
}
if (e.ctrlKey && (e.keyCode == 'S'.charCodeAt(0))) { // Ctrl+S
return false;
}
if (e.ctrlKey && (e.keyCode == 'P'.charCodeAt(0))) { // Ctrl+P
return false;
}
if (e.keyCode == 27) { // Escape
return false;
}
};
</script>
</html>