-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (137 loc) · 7.14 KB
/
index.html
File metadata and controls
162 lines (137 loc) · 7.14 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.6">
<!--Embed stuff-->
<meta property="og:title" content="Hi! I'm Archon 😊">
<meta property="og:description" content="Just a BIO page made by yours truly, Archon. Find out more about me here. Find links to my socials, projects, Payment Links And Information about Commissions!">
<meta property="og:url" content="https://archonbio.xyz/">
<meta property="og:type" content="website">
<!--Theme / colour etc.-->
<meta name="theme-color" content="#FFB6C1">
<title>Hi! I'm archon 😊</title>
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<div class="video-background">
<video autoplay loop muted playsinline id="background-video">
<source src="BackroundVideos/your-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="overlay" id="overlay">
<div class="overlay-text" id="click-to-enter">CLICK TO ENTER</div>
</div>
<div class="content" id="main-content">
<div class="profile-container">
<div class="profile-picture"></div>
<h1>Archon</h1>
</div>
<div class="nav-tabs">
<a class="tab-link active" data-tab="links">Links</a>
<a class="tab-link" data-tab="projects">Projects</a>
<a class="tab-link" data-tab="payment-links">Payment Links</a>
<a class="tab-link" data-tab="Commissions">Commissions</a>
</div>
<div class="bio-box" id="links">
<p>- Hey! I'm Archon. Hope you're having a great day. Welcome to my site! 🤝<br>
- 18, (📍 Wales, United Kingdom.)<br>
- Developer (See Projects / Commisions page)😊</p>
</div>
<div class="bio-box" id="projects" style="display: none;">
<p>Hey! This is where you will be able to find some of my projects. (github.com/CodeByIoan for more!) 🔥<br><br>As of right now there are 2 "projects" Listed here.<br><br>Project 1 - Archon.WTF (Currently not available.) Gaming services platform with 2,500+ digital products sold 🎉<br><br>Project 2 - Archonbio.xyz The site you are currently veiwing. Need I say more? 🔥</p>
</div>
<div class="bio-box" id="payment-links" style="display: none;">
<p>Hey there! This is where you will be able to find my updated crypto adresses. If you would like to discuss a different way of payment add my discord the button is below. Click on the respective button to copy the information to your clipboard! 😊🤝</p>
</div>
<div class="bio-box" id="Commissions" style="display: none;">
<p>Hey! Are you in need of a developer? 👋<br><br>I can help out. I can create / develop anything that you need! ️🔥<br><br>Advanced or even simple Discord bots? Websites? - Including E-Commerce websites with Billgang / Sellpass Integration. (I have ran successful stores myself! Check projects tab.) 🤑<br><br>Or even if its just something simple like the website your currently looking at. 😊<br><br>Yes. I do take custom requests. (I will NOT participate in / create anything that is illegal or can be used for malicious purpouses.) But just press the "Discord Username" Button below to contact me, Just let me know what you need and we can negotiate a price! 📧<br><br>Note : Currently not taking on large projects due to time constraints, But again I am always open to requests just shoot me a DM. 🤝</p>
</div>
<div class="button-container" id="links-buttons">
<a href="https://www.youtube.com/@example" target="_blank">YouTube 🎥</a>
<a href="https://discord.com/users/example" target="_blank">Discord 💬</a>
<a href="https://x.com/example" target="_blank">Twitter 🐦</a>
<a href="https://open.spotify.com/user/example" target="_blank">Spotify 🎵</a>
</div>
<div class="button-container" id="projects-buttons" style="display: none;">
<a href="https://archon.wtf/" target="_blank">archon.wtf</a>
<a href="https://archonbio.xyz/" target="_blank">archonbio.xyz</a>
</div>
<div class="button-container" id="payment-links-buttons" style="display: none;">
<a href="#" onclick="copyToClipboard('bc1qjkgcjj4nrr7p66shdwfrpw743cgcd4x9tfpau6')">Bitcoin</a>
<a href="#" onclick="copyToClipboard('0xE208311Ee3D33Ac41c6e1D437d056FA15373dAEd')">Ethereum</a>
<a href="#" onclick="copyToClipboard('Lb4W9h2pm7ZNw18Cuv6WgFVKNHqEUzq7WX')">Litecoin</a>
<a href="#" onclick="copyToClipboard('notarchon.')">Discord Username</a>
</div>
<div class="button-container" id="Commissions-buttons" style="display: none;">
<a href="#" onclick="copyToClipboard('notarchon.')">Discord Username</a>
<a href="https://t.me/archonwtf/" target="_blank">Telegram (Less Active)</a>
</div>
</div>
<script>
const overlay = document.getElementById('overlay');
const overlayText = document.getElementById('click-to-enter');
const mainContent = document.getElementById('main-content');
const video = document.getElementById('background-video');
const tabs = document.querySelectorAll('.tab-link');
const bioBoxes = document.querySelectorAll('.bio-box');
const buttonContainers = document.querySelectorAll('.button-container');
video.addEventListener('loadedmetadata', () => {
video.currentTime = 7;
});
overlay.addEventListener('click', () => {
overlay.classList.add('hidden');
overlayText.style.opacity = '0';
overlayText.style.transition = 'opacity 0.5s ease';
setTimeout(() => {
overlay.style.display = 'none';
mainContent.classList.add('active');
video.muted = false;
video.volume = 0;
video.play();
const fadeInInterval = setInterval(() => {
if (video.volume < 1) {
video.volume = Math.min(video.volume + 0.05, 1);
} else {
clearInterval(fadeInInterval);
}
}, 100);
}, 500);
});
tabs.forEach(tab => {
tab.addEventListener('click', () => {
tabs.forEach(t => t.classList.remove('active'));
tab.classList.add('active');
const selectedTab = tab.getAttribute('data-tab');
bioBoxes.forEach(box => {
if (box.id === selectedTab) {
box.style.display = 'block';
} else {
box.style.display = 'none';
}
});
buttonContainers.forEach(container => {
if (container.id === `${selectedTab}-buttons`) {
container.style.display = 'grid';
} else {
container.style.display = 'none';
}
});
});
});
document.querySelector('.tab-link[data-tab="links"]').click();
function copyToClipboard(text) {
const textarea = document.createElement('textarea');
textarea.value = text;
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
alert(`${text} copied to clipboard!`);
}
</script>
<script src="snow.js" defer></script>
</body>
</html>