Skip to content

Commit f6ea5a7

Browse files
authored
Update index.html
1 parent f8197f6 commit f6ea5a7

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

index.html

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1-
Hello!
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>BCode - Retro Programming Language</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<div class="container">
11+
<header>
12+
<h1>💾 Welcome to BCode (BubuCode) 💾</h1>
13+
<nav>
14+
<ul>
15+
<li><a href="index.html">Home</a></li>
16+
<li><a href="documentation.html">Documentation</a></li>
17+
<li><a href="#">GitHub</a></li>
18+
</ul>
19+
</nav>
20+
</header>
21+
<main>
22+
<section class="intro">
23+
<h2>What is BCode?</h2>
24+
<p>BCode is a beginner-friendly, easy-to-use programming language designed for learning and fun projects.</p>
25+
<p>With a simple and intuitive syntax, you can create amazing things in no time!</p>
26+
</section>
27+
<section class="features">
28+
<h2>Features</h2>
29+
<ul>
30+
<li>🚀 Simple Syntax</li>
31+
<li>💻 Easy to Learn</li>
32+
<li>📦 Built-in Functions</li>
33+
</ul>
34+
</section>
35+
</main>
36+
<footer>
37+
<p>© 2024 BubuTheDev - Licensed under MIT</p>
38+
</footer>
39+
</div>
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)