<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Global Logistics – Admin Dashboard</title>
</head>
<body>
<header>
<h1>Global Logistics Admin Dashboard</h1>
</header>
<nav>
<ul>
<li><a href=”#home”>Home</a></li>
<li><a href=”#services”>Services</a></li>
<li><a href=”#about”>About</a></li>
<li><a href=”#articles”>Articles</a></li>
<li><a href=”#contact”>Contact Us</a></li>
</ul>
</nav>
<main>
<section id=”home”>
<h2>Edit Home Section</h2>
<textarea rows=”4″ cols=”50″>Embark on the Cutting Edge of Freight…</textarea>
<button>Update Home</button>
</section>
<section id=”services”>
<h2>Services</h2>
<textarea rows=”4″ cols=”50″>Explore Our Services…</textarea>
<button>Update Services</button>
<!– Repeat for each service –>
</section>
<section id=”about”>
<h2>About</h2>
<textarea rows=”4″ cols=”50″>Welcome to FUZ Global Logistics…</textarea>
<button>Update About</button>
</section>
<section id=”articles”>
<h2>Articles</h2>
<textarea rows=”4″ cols=”50″>Add New Article…</textarea>
<button>Add Article</button>
<!– Articles list –>
</section>
<section id=”contact”>
<h2>Contact Us</h2>
<form>
<label for=”contactEmail”>Email</label>
<input type=”email” id=”contactEmail” name=”contactEmail”>
<label for=”contactNumber”>Phone Number</label>
<input type=”text” id=”contactNumber” name=”contactNumber”>
<button type=”submit”>Update Contact Info</button>
</form>
</section>
</main>
<footer>
<p>© 2024 FUZ Global Logistics. All rights reserved.</p>
</footer>
</body>
</html>