Skip to content

Commit a9cca6d

Browse files
authored
Update index.html
1 parent 543b3e9 commit a9cca6d

File tree

1 file changed

+95
-33
lines changed

1 file changed

+95
-33
lines changed

index.html

Lines changed: 95 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,103 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<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">
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>BCode - Home</title>
7+
<style>
8+
body {
9+
background-color: #1e1b29;
10+
color: #e0e0e0;
11+
font-family: Arial, sans-serif;
12+
margin: 0;
13+
padding: 0;
14+
}
15+
16+
header {
17+
background-color: #3e2c52;
18+
padding: 20px;
19+
text-align: center;
20+
border-bottom: 4px solid #7e57c2;
21+
}
22+
23+
header h1 {
24+
color: #e0e0e0;
25+
font-size: 2.5em;
26+
}
27+
28+
nav {
29+
margin: 20px 0;
30+
display: flex;
31+
justify-content: center;
32+
}
33+
34+
nav a {
35+
color: #b39ddb;
36+
text-decoration: none;
37+
margin: 0 15px;
38+
font-weight: bold;
39+
}
40+
41+
nav a:hover {
42+
color: #7e57c2;
43+
}
44+
45+
.container {
46+
width: 85%;
47+
max-width: 1200px;
48+
margin: 0 auto;
49+
padding: 20px;
50+
}
51+
52+
.section {
53+
margin-bottom: 40px;
54+
background-color: #2c2541;
55+
padding: 20px;
56+
border-radius: 8px;
57+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
58+
}
59+
60+
.section h2 {
61+
color: #b39ddb;
62+
margin-bottom: 10px;
63+
}
64+
65+
footer {
66+
background-color: #3e2c52;
67+
padding: 10px;
68+
text-align: center;
69+
color: #e0e0e0;
70+
border-top: 4px solid #7e57c2;
71+
}
72+
</style>
873
</head>
974
<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>
75+
<header>
76+
<h1>BCode (BubuCode)</h1>
77+
<nav>
78+
<a href="index.html">Home</a>
79+
<a href="documentation.html">Documentation</a>
80+
<a href="#">GitHub</a>
81+
</nav>
82+
</header>
83+
84+
<div class="container">
85+
<div class="section">
86+
<h2>Welcome to BCode</h2>
87+
<p>BCode is an easy-to-learn, simple, and powerful programming language designed for both beginners and experienced programmers looking for a fun and intuitive language.</p>
3988
</div>
89+
90+
<div class="section">
91+
<h2>Features</h2>
92+
<ul>
93+
<li>Beginner-Friendly Syntax</li>
94+
<li>Fast Learning</li>
95+
</ul>
96+
</div>
97+
</div>
98+
99+
<footer>
100+
<p>© 2024 BubuTheDev - MIT Licensed</p>
101+
</footer>
40102
</body>
41103
</html>

0 commit comments

Comments
 (0)