-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 3.01 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BubuTheDev - About Me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>BubuTheDev</h1>
<nav>
<ul>
<li><a href="#home" onclick="showTab('home')">Home</a></li>
<li><a href="#projects" onclick="showTab('projects')">Projects</a></li>
<li><a href="#youtube" onclick="showTab('youtube')">YouTube</a></li>
<li><a href="#contact" onclick="showTab('contact')">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="tab-content">
<h2>About Me</h2>
<p>Hello! I'm BubuTheDev, a Roblox developer with over five years of experience bringing games to life in Lua. While Lua is my primary language, I also enjoy exploring other programming languages like C#, Python, JavaScript, HTML, GDScript, and GML.</p>
<p>I've had the chance to work with a variety of game engines and frameworks, including Unity, Unreal, Godot, LOVE2D, and PyGame. Each one has expanded my skills, though Lua remains where I feel most at home.</p>
<p>On my YouTube channel, <strong>BubuTheDev</strong>, I create videos featuring fun and unique challenges in Roblox Studio. Previously, I focused on tutorials to help others dive into Roblox development, and now I’m bringing those skills into fresh, creative challenges.</p>
</section>
<section id="projects" class="tab-content" style="display: none;">
<h2>My Projects</h2>
<ul>
<li>Roblox FPS Game - developing a local GUI for viewport weapons</li>
<li>2D Roblox Game - working on grass and cave biomes</li>
<li>3D Renderer - creating from scratch without using engines or tools like OpenGL</li>
</ul>
</section>
<section id="youtube" class="tab-content" style="display: none;">
<h2>YouTube Channel</h2>
<p>Check out my YouTube channel, <a href="https://www.youtube.com/@BubuTheDev" target="_blank">BubuTheDev</a>, where I post challenges and tutorials on Roblox Studio!</p>
<p>Recently, I've been focused on Roblox Studio challenges, but I previously shared tutorials to help others learn and improve.</p>
</section>
<section id="contact" class="tab-content" style="display: none;">
<h2>Contact Me</h2>
<p>Join our community on Discord to share your projects, get feedback, and connect with other developers:</p>
<a href="https://discord.gg/Ew565r7sRQ" target="_blank">CLICK HERE TO JOIN DISCORD</a>
<iframe src="https://discordapp.com/widget?id=1301920379698413568&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</section>
<script src="script.js"></script>
</body>
</html>