Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed issue by creating home page #25

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="description" content="Welcome to our Fashion Ecommerce site. Shop the latest trends!">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Home - Fashion Ecommerce</title>
<link rel="icon" href="img/core-img/favicon.ico">
<link rel="stylesheet" href="css/core-style.css">
<link rel="stylesheet" href="style.css">
</head>

<body>
<!-- Header Area -->
<header class="header_area">
<div class="classy-nav-container breakpoint-off d-flex align-items-center justify-content-between">
<nav class="classy-navbar" id="essenceNav">
<a class="nav-brand" href="index.html"><img src="img/core-img/logo.png" alt="Logo"></a>
<div class="classy-menu">
<div class="classynav">
<ul>
<li><a href="#">Shop</a></li>
<li><a href="#">Pages</a>
<ul class="dropdown">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
</div>
</header>

<!-- Hero Section -->
<section class="hero_area bg-img" style="background-image: url('img/bg-img/hero.jpg');">
<div class="hero-content">
<h1>Welcome to Our Fashion Store</h1>
<p>Discover the latest trends and styles</p>
<a href="shop.html" class="btn essence-btn">Shop Now</a>
</div>
</section>


<!-- Call to Action Section -->
<section class="cta-area">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<div class="cta-content">
<h2>Get 20% Off Your First Order!</h2>
<a href="shop.html" class="btn essence-btn">Shop Now</a>
</div>
</div>
</div>
</div>
</section>

<!-- Footer Area -->
<footer class="footer_area clearfix">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<p>&copy; <script>document.write(new Date().getFullYear());</script> All rights reserved.</p>
</div>