File: /home/alahcszr/epco-jo.com/index.bak
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EPCO</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
header .logo img {
height: 50px;
}
header nav {
display: flex;
gap: 30px;
}
header nav a {
color: #666;
text-decoration: none;
font-size: 16px;
}
.contact {
background-color: #fff;
border: 1px solid #ccc;
padding: 10px 20px;
border-radius: 20px;
font-size: 14px;
display: flex;
align-items: center;
}
.contact img {
margin-right: 10px;
height: 20px;
}
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 50px 0;
}
.hero .text {
max-width: 500px;
}
.hero .text h1 {
font-size: 48px;
color: #23476A;
margin-bottom: 20px;
line-height: 1.2;
}
.hero .text p {
font-size: 18px;
color: #666;
margin-bottom: 30px;
}
.search-bar {
display: flex;
max-width: 400px;
margin-bottom: 50px;
}
.search-bar input[type="text"] {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
font-size: 16px;
}
.search-bar button {
padding: 10px 20px;
background-color: #23476A;
color: #fff;
border: none;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
cursor: pointer;
}
.hero .image {
max-width: 500px;
}
.hero .image img {
width: 70%;
}
.stats {
display: flex;
justify-content: space-around;
margin-top: 30px;
text-align: center;
}
.stats div {
font-size: 18px;
color: #666;
}
.stats div h2 {
font-size: 32px;
color: #23476A;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<img src="img/logo.svg" alt="EPCO Logo"> <!-- Replace LOGO_URL with actual logo URL -->
</div>
<nav>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">Catalogue</a>
<a href="#">About</a>
<a href="#">Contact Us</a>
</nav>
<div class="contact">
<img src="img/phone.svg" alt="Phone Icon"> <!-- Replace PHONE_ICON_URL with actual phone icon URL -->
+962 6 420000
</div>
</header>
<section class="hero">
<div class="text">
<h1>HEALTHY, GREEN AND CLEAN</h1>
<p>Welcome, your ultimate destination for discovering a world of luxury cartoon products.</p>
<div class="search-bar">
<input type="text" placeholder="Search ...">
<button>Search</button>
</div>
</div>
<div class="image">
<img src="img/cup.svg" alt="Cartoon Character"> <!-- Replace CHARACTER_IMAGE_URL with actual image URL -->
</div>
</section>
<section class="stats">
<div>
<h2>8.1k+</h2>
<p>Luxury Products</p>
</div>
<div>
<h2>160k+</h2>
<p>Loyal Customers</p>
</div>
<div>
<h2>350+</h2>
<p>Cities & Distribution</p>
</div>
</section>
</div>
</body>
</html>