deepsite-project / index.html
hotmemeh's picture
add a banner of a girly ring and bold the fonts and add a screen saver background with 2 photos same as in the showroom home
c1c0618 verified
raw
history blame
8.56 kB
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HER - متجر الأحذية</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Tajawal', sans-serif;
}
body {
background-color: #f8f8f8;
color: #333;
}
.logo {
font-family: 'Arial', sans-serif;
font-weight: bold;
font-size: 2rem;
color: #000;
display: flex;
align-items: center;
position: relative;
}
.logo-owner {
font-size: 0.8rem;
margin-right: 0.5rem;
color: #666;
position: relative;
}
.logo::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff, #5f27cd);
background-size: 400% 400%;
animation: gradient 3s ease infinite;
border-radius: 10px;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.logo span {
background: linear-gradient(45deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: gradient 3s ease infinite;
background-size: 400% 400%;
}
header {
background-color: white;
padding: 1rem 2rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-right: 1.5rem;
}
nav ul li a {
text-decoration: none;
color: #333;
font-weight: 700;
}
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
flex-direction: column;
position: relative;
animation: heroZoom 15s infinite alternate;
}
.hero-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
display: flex;
overflow: hidden;
}
.hero-slide {
min-width: 100%;
height: 100%;
background-size: cover;
background-position: center;
transition: 1s;
}
.banner {
background: linear-gradient(rgba(255, 192, 203, 0.8), rgba(255, 192, 203, 0.8));
padding: 1.5rem;
margin: 2rem 0;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.banner h2 {
font-weight: bold;
font-size: 2rem;
margin-bottom: 1rem;
}
.banner-img {
width: 200px;
height: 200px;
margin: 0 auto;
background-image: url('http://static.photos/jewelry/640x360/1');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
@keyframes heroZoom {
0% { background-size: 100% auto; }
100% { background-size: 120% auto; }
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
max-width: 600px;
}
.products {
padding: 4rem 2rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 2rem;
}
.product-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-image {
height: 200px;
background-size: cover;
background-position: center;
}
.product-info {
padding: 1rem;
}
.product-info h3 {
margin-bottom: 0.5rem;
font-weight: 700;
}
.price {
font-weight: 800;
color: #e63946;
margin: 0.5rem 0;
font-size: 1.2rem;
}
footer {
background-color: #333;
color: white;
padding: 2rem;
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="logo">
<span class="logo-owner">AyvWvlid</span>
<span>HER</span>
</div>
<nav>
<ul>
<li><a href="#">الرئيسية</a></li>
<li><a href="#">المنتجات</a></li>
<li><a href="#">عن المتجر</a></li>
<li><a href="#">اتصل بنا</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-slider">
<div class="hero-slide" style="background-image: url('https://shoeroom.shoes/wp-content/uploads/2023/01/shoeroom_hero_image.jpg')"></div>
<div class="hero-slide" style="background-image: url('https://shoeroom.shoes/wp-content/uploads/2022/12/shoeroom_winter_collection.jpg')"></div>
</div>
<h1 style="font-weight: 900; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);">أحذية أنيقة لعالم أنيق</h1>
<p style="font-weight: 700; text-shadow: 1px 1px 2px rgba(0,0,0,0.5);">اكتشف أحدث تشكيلات الأحذية لعام 2023 بأسعار تنافسية وجودة عالية</p>
</section>
<div class="banner">
<h2>خواتم أنثوية أنيقة</h2>
<p style="font-weight: 600;">تصاميم حصرية تضيف لمسة جمالية لأناقتك اليومية</p>
<div class="banner-img"></div>
</div>
<section class="products">
<div class="product-card">
<div class="product-image" style="background-image: url('http://static.photos/fashion/640x360/2')"></div>
<div class="product-info">
<h3>حذاء رياضي</h3>
<p>حذاء رياضي مريح ومناسب لجميع الأنشطة</p>
<div class="price">250 ر.س</div>
</div>
</div>
<div class="product-card">
<div class="product-image" style="background-image: url('http://static.photos/fashion/640x360/3')"></div>
<div class="product-info">
<h3>حذاء كلاسيكي</h3>
<p>حذاء أنيق للرسميات والمناسبات</p>
<div class="price">350 ر.س</div>
</div>
</div>
<div class="product-card">
<div class="product-image" style="background-image: url('http://static.photos/fashion/640x360/4')"></div>
<div class="product-info">
<h3>صندل صيفي</h3>
<p>مريح وخفيف لأجواء الصيف الحارة</p>
<div class="price">180 ر.س</div>
</div>
</div>
<div class="product-card">
<div class="product-image" style="background-image: url('http://static.photos/fashion/640x360/5')"></div>
<div class="product-info">
<h3>حذاء كاجوال</h3>
<p>مثالي للخروج اليومي مع الأصدقاء</p>
<div class="price">220 ر.س</div>
</div>
</div>
</section>
<footer>
<p>جميع الحقوق محفوظة &copy; 2023 HER - متجر الأحذية</p>
<p>تطوير: AyvWvlid</p>
</footer>
</body>
</html>