0% found this document useful (0 votes)
9 views4 pages

Web HTML

The document contains HTML code for a website named Zebakwe, which includes a home page and a donation page. The home page outlines the organization's mission to support communities in Norton, Chegutu, and Selous, while the donation page provides details for donating via EcoCash. The website features a navigation menu and a consistent styling through an external CSS file.

Uploaded by

sumertons
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views4 pages

Web HTML

The document contains HTML code for a website named Zebakwe, which includes a home page and a donation page. The home page outlines the organization's mission to support communities in Norton, Chegutu, and Selous, while the donation page provides details for donating via EcoCash. The website features a navigation menu and a consistent styling through an external CSS file.

Uploaded by

sumertons
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Zebakwe - Home</title>

<link rel="stylesheet" href="styles.css">

</head>

<body>

<header>

<h1>Welcome to Zebakwe</h1>

<nav>

<ul>

<li><a href="index.html">Home</a></li>

<li><a href="about.html">About</a></li>

<li><a href="donate.html">Donate</a></li>

<li><a href="contact.html">Contact</a></li>

</ul>

</nav>

</header>

<section>

<h2>Our Mission</h2>

<p>We are dedicated to supporting communities in Norton, Chegutu,


and Selous.</p>

</section>

</body>
</html>

body {

font-family: Arial, sans-serif;

background-color: #F0F0F0;

color: #333;

margin: 0;

padding: 0;

header {

background-color: navy;

color: white;

padding: 15px;

text-align: center;

nav ul {

list-style-type: none;

padding: 0;

nav ul li {

display: inline;

margin: 0 15px;
}

nav ul li a {

color: white;

text-decoration: none;

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Donate - Zebakwe</title>

<link rel="stylesheet" href="styles.css">

</head>

<body>

<header>

<h1>Support Our Cause</h1>

</header>

<section>

<h2>Donate via EcoCash</h2>

<p>Use the following details to donate via EcoCash:</p>

<p><strong>Merchant Code:</strong> 123456</p>

<p><strong>Contact:</strong> +263 77X XXX XXX</p>

</section>
</body>

</html>

You might also like