Remove template starter

This commit is contained in:
Stelian Tsekov 2024-03-06 16:08:48 +01:00
parent 79a0add3b0
commit 98a94be178

View file

@ -1,98 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TBZ Community Hub</title>
<style>
/* Basic styling for layout */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
header, .features, .additional-services, .call-to-action, footer {
padding: 20px;
margin: 20px 0;
}
/* Simple responsive grid for features */
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.feature, .service {
text-align: center;
}
/* Basic button styling */
.btn {
display: inline-block;
background: #007bff;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
footer {
text-align: center;
font-size: 0.8em;
}
</style>
</head>
<body>
<header class="container">
<h1>Welcome to the TBZ Community Hub!</h1>
<p>A student-driven platform for collaboration and innovation.</p>
</header>
<section class="features container">
<h2>Main Features</h2>
<div class="grid">
<div class="feature">
<h3>Forum</h3>
<p>Join the conversation! Our forum is your go-to destination for all things TBZ.</p>
</div>
<div class="feature">
<h3>Git for Collaboration</h3>
<p>Collaborate on projects like never before with our Git repository.</p>
</div>
</div>
</section>
<section class="additional-services container">
<h2>Additional Features and Services</h2>
<div class="grid">
<div class="service">
<h3>Tutorials and Workshops</h3>
<p>Information on upcoming educational events, coding bootcamps, and study sessions.</p>
</div>
<div class="service">
<h3>Resource Sharing</h3>
<p>A place for sharing textbooks, lecture notes, and other educational materials.</p>
</div>
<div class="service">
<h3>Project Showcase</h3>
<p>A gallery for students to showcase their projects and receive feedback.</p>
</div>
</div>
</section>
<section class="call-to-action container">
<h2>Join the Community!</h2>
<p>Ready to dive in? Join us now and start contributing to the TBZ Community Hub.</p>
<a href="#" class="btn">Join Us Now</a>
<a href="#" class="btn">Contribute to the Hub</a>
</section>
<footer>
<p>This is an unofficial community platform run by students, for students of the TBZ school. For inquiries and support, please contact us.</p>
</footer>
</body>
</html>