-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
302 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
|
||
/* .footer { | ||
background-color: blueviolet; | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
width: 100%; | ||
box-sizing: border-box; | ||
} */ | ||
|
||
|
||
.gradient-background { | ||
background: linear-gradient(300deg, #00bfff, #D33BDF, #FE6868); | ||
background-size: 180% 180%; | ||
animation: gradient-animation 18s ease infinite; | ||
|
||
} | ||
|
||
|
||
.row{ | ||
padding-top: 20px; | ||
padding-left: 50px; | ||
--bs-gutter-x: 0 !important; | ||
|
||
} | ||
|
||
|
||
.carousel-item{ | ||
padding-top: 70px; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.carousel-item { | ||
padding-top: 70px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title >E-smart</title> | ||
<link rel="stylesheet" href="index.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> | ||
|
||
</head> | ||
<body > | ||
|
||
|
||
<section class="header "> | ||
|
||
<nav class="navbar navbar-expand-md bg-dark sticky-top border-bottom" data-bs-theme="dark"> | ||
<div class="container"> | ||
<a class="navbar-brand d-md-none" href="#"> | ||
<img src="./icons8-technology-64.svg" alt="E-smart logo" /> | ||
E-Smart | ||
</a> | ||
<button class="navbar-toggler nav-item dropdown d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvas" aria-controls="#offcanvas" aria-label="Toggle navigation"> | ||
|
||
<a class="nav-link " href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> | ||
<span class="navbar-toggler-icon"></span> | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> | ||
<li><a class="dropdown-item" href="#">Home</a></li> | ||
<li><a class="dropdown-item" href="#">Product</a></li> | ||
<li><a class="dropdown-item" href="#">Features</a></li> | ||
<li><a class="dropdown-item" href="#">Pricing</a></li> | ||
<li><a class="dropdown-item" href="#">Support</a></li> | ||
<li><a class="dropdown-item" href="#">About</a></li> | ||
</ul> | ||
|
||
</button> | ||
|
||
|
||
|
||
|
||
<div class="offcanvas offcanvas-end" tabindex="-1" id="#offcanvas" aria-labelledby="#offcanvasLabel"> | ||
<div class="offcanvas-header"> | ||
<h5 class="offcanvas-title" id="#offcanvasLabel" >E-Smart</h5> | ||
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button> | ||
</div> | ||
<div class="offcanvas-body "> | ||
<ul class="navbar-nav flex-grow-1 justify-content-between"> | ||
<li class="nav-item"><a class="nav-link" href="#"> | ||
<img src="./icons8-technology-64.svg" alt="E-smart logo" /> | ||
|
||
</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">Home</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">Product</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">Features</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">Pricing</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">Support</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#">About</a></li> | ||
<li class="nav-item"><a class="nav-link" href="#"> | ||
<svg xmlns="http://www.w3.org/2000/svg" id="Isolation_Mode" data-name="Isolation Mode" viewBox="0 0 24 24" width="24" height="30" fill="white"><circle cx="7" cy="22" r="2"/><circle cx="17" cy="22" r="2"/><path d="M5.654,5,5.391,2.938A3.328,3.328,0,0,0,2.087,0H0V3H2.087a.331.331,0,0,1,.326.3l1.5,11.759A3.327,3.327,0,0,0,7.217,18H20.4L23.974,5ZM18.112,15H7.217a.329.329,0,0,1-.325-.3L6.037,8h14Z"/></svg> | ||
</a></li> | ||
<form class="col-12 col-lg-auto col-md-auto mb-3 mb-lg-0 me-lg-3" role="search"> | ||
<input type="search" class="form-control form-control-dark text-bg" placeholder="Search..." aria-label="Search"> | ||
</form> | ||
|
||
<div class="text-end d-lg-flex align-items-center" > | ||
<button type="button" class="btn btn-outline-light me-2 col d-none d-lg-block btn-sm ">Login</button> | ||
<button type="button" class="btn btn-warning col d-none d-lg-block btn-sm " style="width: 100px;">Sign-up</button> | ||
</div> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="carousel-container " style="background-color: tomato;" > | ||
<div id="myCarousel" class="carousel slide mb-6 " data-bs-ride="carousel"> | ||
<div class="carousel-indicators " > | ||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="0" class="" aria-label="Slide 1"></button> | ||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="1" aria-label="Slide 2" class="active" aria-current="true"></button> | ||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="2" aria-label="Slide 3" class=""></button> | ||
</div> | ||
<div class="carousel-inner" > | ||
<div class="carousel-item" style="background-color: var(--bs-secondary-color);"> | ||
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false"><rect width="100%" height="100%" fill="none" ></rect></svg> | ||
<div class="container"> | ||
<div class="carousel-caption text-start"> | ||
<h2>Example headline.</h2> | ||
<p class="opacity-75">Some representative placeholder content for the first slide of the carousel.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#">Explore</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="carousel-item active " style="background-color: var(--bs-secondary-color);" > | ||
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false"><rect width="100%" height="100%" fill="none"></rect></svg> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h2>Another example headline.</h2> | ||
<p>Some representative placeholder content for the second slide of the carousel.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#">Learn more</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="carousel-item" style="background-color: var(--bs-secondary-color);"> | ||
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false"><rect width="100%" height="100%" fill="none"></rect></svg> | ||
<div class="container"> | ||
<div class="carousel-caption text-end"> | ||
<h2>One more for good measure.</h2> | ||
<p>Some representative placeholder content for the third slide of this carousel.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#">Browse gallery</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<button class="carousel-control-prev" type="button" data-bs-target="#myCarousel" data-bs-slide="prev"> | ||
<span class="carousel-control-prev-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Previous</span> | ||
</button> | ||
<button class="carousel-control-next" type="button" data-bs-target="#myCarousel" data-bs-slide="next"> | ||
<span class="carousel-control-next-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Next</span> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="row gradient-background" > | ||
<div class="col-lg-4" > | ||
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect></svg> | ||
<h2 class="fw-normal">Heading</h2> | ||
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first column.</p> | ||
<p><a class="btn btn-secondary" href="#">View details »</a></p> | ||
</div><!-- /.col-lg-4 --> | ||
<div class="col-lg-4"> | ||
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect></svg> | ||
<h2 class="fw-normal">Heading</h2> | ||
<p>Another exciting bit of representative placeholder content. This time, we've moved on to the second column.</p> | ||
<p><a class="btn btn-secondary" href="#">View details »</a></p> | ||
</div><!-- /.col-lg-4 --> | ||
<div class="col-lg-4 "> | ||
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect></svg> | ||
<h2 class="fw-normal">Heading</h2> | ||
<p>And lastly this, the third column of representative placeholder content.</p> | ||
<p><a class="btn btn-secondary" href="#">View details »</a></p> | ||
</div><!-- /.col-lg-4 --> | ||
</div> | ||
|
||
</section> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<section class="gradient-background"> | ||
|
||
<div class="container footer "> | ||
<footer class=" container gradient-background row row-cols-1 row-cols-sm-2 row-cols-md-5 py-5 mt-5 "> | ||
<div class="col mb-3"> | ||
<a href="/" class="d-flex align-items-center mb-3 link-body-emphasis text-decoration-none"> | ||
<svg class="bi me-2" width="40" height="32"><use xlink:href="#bootstrap"></use></svg> | ||
</a> | ||
<p class="text-body-secondary">© E-smart</p> | ||
</div> | ||
|
||
<div class="col mb-3"> | ||
|
||
</div> | ||
|
||
<div class="col mb-3"> | ||
<h5>Appliances</h5> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="col mb-3"> | ||
<h5>Features</h5> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="col mb-3"> | ||
<h5>Contact Us</h5> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
</section> | ||
|
||
|
||
<script src="./index.js" charset="utf-8"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.