Skip to content

index.html #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 0 additions & 125 deletions flexbox.html

This file was deleted.

95 changes: 95 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Announcements</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 20px;
background-color: #4CAF50;
color: white;
}
nav {
padding: 15px;
background-color: #333;
}
nav a {
color: white;
text-decoration: none;
margin: 10px;
font-weight: bold;
}
main {
padding: 20px;
}
img {
width: 100%;
height: auto;
max-height: 300px;
display: block;
margin: 20px auto;
}
ul, ol {
padding-left: 20px;
}
footer {
text-align: center;
padding: 10px;
background-color: #4CAF50;
color: white;
margin-top: 20px;
}
</style>
</head>
<body>

<!-- Header Section with School Name -->
<header>
<h1>Welcome to Curro Parkdene</h1>
<p>Your source for the latest news and announcements</p>
</header>

<!-- Navigation Links -->
<nav>
<a href="index.html">Home</a>
<a href="daily-news.html">Daily News</a>
</nav>

<!-- Main Content -->
<main>
<img src="school-picture.jpg" alt="Picture of the School">
<h2>Announcements</h2>
<p><strong>Note:</strong> Check here for weekly announcements.</p>

<!-- Ordered List -->
<h3>Upcoming Events</h3>
<ol>
<li>School Sports Day - October 15</li>
<li>Parent-Teacher meeting - October 20</li>
<li>Science Fair - October 25</li>
</ol>

<!-- Unordered List -->
<h3>Key Reminders</h3>
<ul>
<li>Bring a water bottle every day.</li>
<li>School gates open at 7:30 AM.</li>
<li>Uniforms are mandatory.</li>
</ul>
</main>

<!-- Footer Section with Contact Information -->
<footer>
<p>Contact us at <em>[email protected]</em></p>
</footer>

</body>