Online Store Layout

Size
3,465 Kb
Views
10,120

How do I make an online store layout?

What is a online store layout? How do you make a online store layout? This script and codes were developed by LaShawnda Elder on 10 December 2022, Saturday.

Online Store Layout Previews

Online Store Layout - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Online Store Layout</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <html>	<head>	<title></title>	</head>	<body>	<div class="header">	<h1>Online Store</h1>	<h2 class="title">Mission, Vission, &amp; Values</h2>	<nav>	<ul>	<li><a href="logo.com">Logo</a></li>	<li><a href="home.com" class="on">Home</a></li>	<li><a href="products.com">Products</a></li>	<li><a href="deals.com">Deals</a></li>	<li><a href="stores.com">Stores</a></li>	<li><a href="contact.com">Contact</a></li>	<li class="right cart"><a href="cart.com">Cart</a></li>	<img src="http://lelder.road2hire.ninja/layout/account.png" alt="account icon" class="account_icon" />	<li class="right account"><a href="account.com">Your Account</a></li>	<img src="http://lelder.road2hire.ninja/layout/cart.png" alt="cart icon" class="cart_icon"/>	</ul>	</nav>	<!--end of nav-->	</div>	<div class="container">	<div class="row">	<div class="columns one-third">	<figure class="blue">	<p class="blue_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	<div class="columns one-third">	<figure class="red">	<p class="red_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	<div class="columns one-third">	<figure class="green">	<p class="green_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	</div>	<!--end of .row-->	<div class="row">	<div class="columns one-third">	<figure class="blue">	<p class="blue_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	<div class="columns one-third">	<figure class="blue">	<p class="blue_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	<div class="columns one-third">	<figure class="blue">	<p class="blue_p">Black Friday Deals</p>	<img src="http://lelder.road2hire.ninja/layout/image.jpg" alt="image" />	<figcaption>Buy 50 mobiles and get a gift card</figcaption>	</figure>	</div>	<!--end of .columns one-third-->	</div>	<!--end of .row-->	</div>	<!--end of .container-->	<div class="bottom">	<p class="copyright">Online Store Copyright</p>	<p class="deals">Get Deals:</p>	<label class="space" for="email">Your Email:</label>	<input type="email" value"email" id="email" class="email">	<input type="submit" value="Sign Up" class="button">	</div>	<!--end of .bottom-->	<footer>	</footer>	</body>
</html>
</body>
</html>

Online Store Layout - Script Codes CSS Codes

* { box-sizing: border-box;
}
.header { background-color: #f2f2f2; margin: 0; padding-top: 10px;
}
h1, h2 { text-align: center;
}
.title { font-size: 15px; font-weight: normal;
}
nav { background-color: #000;
}
nav ul li, nav a { display: inline-block; color: #ccc; padding: 5px; position: relative; text-decoration: none;
}
nav a:hover { color: #fff; background: #333333;
}
nav .on { color: #fff;
}
nav .right { float: right; margin-left: 30px;
}
nav img { height: 20px; position: absolute;
}
.cart_icon { right: 95px; top: 130px;
}
.account_icon { right: 240px; top: 130px;
}
.cart { margin-right: 50px;
}
.container { max-width: 1000px; margin: 0 auto;
}
.one-third { width: 33.3333333%;
}
.row { clear: left; display: inline-block; margin: 10px -10px; overflow: hidden;
}
.columns { float: left;
}
p { margin-bottom: 10px; margin-top: 0px; padding: 5px;
}
.copyright { padding-top: 15px; text-align: center;
}
.email { width: 300px;
}
.deals { display: inline-block; font-size: 12px; margin-left: 450px; max-width: 1100px;
}
.bottom { background-color: #f2f2f2;
}
.button { background-color: #cc0000; color: #fff;
}
.blue { border: 1px solid blue;
}
.red { border: 1px solid #ffb3b3;
}
.green { border: 1px solid #00b300;
}
figure { display: inline-block; font-size: 12px;
}
figure img { padding: 0 10px 5px 10px;
}
figure figcaption { background-color: #e6e6e6; border-top: 1px solid #ccc; font-size: 12px; height: 30px; padding: 5px;
}
.blue_p { background-color: blue; color: #fff;
}
.green_p { background-color: #cdffcd; color: green;
}
.red_p { background-color: #ffb3b3; color: #660000;
}
img { height: 150px;
}
footer { background-color: #ccc; min-height: 200px;
}
Online Store Layout - Script Codes
Online Store Layout - Script Codes
Home Page Home
Developer LaShawnda Elder
Username lelder
Uploaded December 10, 2022
Rating 3
Size 3,465 Kb
Views 10,120
Do you need developer help for Online Store Layout?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

LaShawnda Elder (lelder) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!