Based on the provided image, I
```
<!DOCTYPE html>
<html>
<head>
<title>EDUCHOKE.COM</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #007bff; /* Blue background */
color: #fff;
padding: 20px;
text-align: center;
}
.header h1 {
margin: 0;
}
.nav-icons {
display: flex;
justify-content: space-around;
padding: 20px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.nav-icons .icon {
text-align: center;
}
.nav-icons .icon img {
width: 40px;
height: 40px;
margin-bottom: 10px;
}
.contact-info {
background-color: #f7f7f7;
padding: 20px;
text-align: center;
}
.whatsapp-group {
background-color: #25D366; /* WhatsApp green */
color: #fff;
padding: 10px;
text-align: center;
border-radius: 5px;
}
.login-link {
background-color: #f7f7f7;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="header">
<h1>EDUCHOKE.COM</h1>
<p>YOUR GATEWAY TO EXAM EXCELLENCE</p>
<p>VIBRANT EXAM EXPO SITE</p>
<p>PREMIUM EXAM RUNZ WEBSITE FOR JAMB, WAEC, NECO, GCE, JUPEB, IJMB, NABTEB, BECE, JOINT & MORE.</p>
</div>
<div class="nav-icons">
<div class="icon">
<img src="home-icon.png" alt="Home">
<p>HOME</p>
</div>
<div class="icon">
<img src="waec-icon.png" alt="WAEC">
<p>WAEC</p>
</div>
<div class="icon">
<img src="neco-icon.png" alt="NECO">
<p>NECO</p>
</div>
<div class="icon">
<img src="jamb-icon.png" alt="JAMB">
<p>JAMB</p>
</div>
</div>
<div class="contact-info">
<p>For Easy & Fast Contact??</p>
<p>07067219794 || 08145438806</p>
<div class="whatsapp-group">
<p>JOIN our WhatsApp group</p>
<button>Tap to JOIN</button>
</div>
</div>
<div class="login-link">
<p>CLICK HERE TO LOGIN INTO OUR ANSWER PAGE</p>
<p>CLICK HERE TO INPUT YOUR PIN CODE AND GET</p>
</div>
</body>
</html>
```
This HTML code creates a basic structure for the EDUCHOKE.COM website, including:
- A header section with the site title and tagline
- A navigation section with icons for different categories (HOME, WAEC, NECO, JAMB)
- A contact information section with phone numbers and a WhatsApp group link
- A login link section with a call-to-action to login or input a pin code
You'll need to replace the icon images (home-icon.png, waec-icon.png, neco-icon.png, jamb-icon.png) with your own images. You can customize the styles and layout as needed to fit your design preferences.

Post a Comment