Ecommerce Website Using HTML CSS and Javascript _ Simple and Responsive Ecommerce Website
Ecommerce Website Using HTML CSS and Javascript _ Simple and Responsive Ecommerce Website
₹49,999 ₹37,999
OnePlus Phones At Best Deals
Croma
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 1/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
Heyy....., wait one second did you have not your website. Don't feel bad, I
am here to help you to make you learn How to build an e-commerce website so
stay connected to the blog till the end and at the end, you have your e-commerce
website then do shopping as so as you want.
Croma
Before discussing the procedure to make the website, let's lookout at How it looks.
You can look at my beautiful e-commerce website 👇😅.
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 2/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
Code
LiveWith Random
Project:- Home Categories Recent Post About Us P
Here you can check it.
EDIT ON
HTML CSS JS Result
<head>
<body>
<header>
<div class="logo"><a href="#">ShoPperZ</a></div>
<div class="menu">
<a href="#">
Resources
You have seen my responsive e-commerce website layout and you started imagining your
website.
The important ingredients you should have for building an e-commerce website.
Following are some skills required for building this webpage:-
.
1.HTML.
2.CSS.
3. Javascript(Basics).
Don't worry you don't need any biology knowledge for this website 😂.
1. Header:-
Below there is a picture of the navigation bar which contains the brand name/logo,
search bar, and menu items, this all comes under the header.
1. In the header section, firstly made three divs. One for the logo, second for the search bar,
and third for menu lists.
In the second class, I have used the search icon I have imported through ionicon , for any
type of icons used in website development you can use it.
Input is a tag used for many purposes for like checkboxes, radio, email input, date, time,
and others. But here we are using for search bar so type is text. For more ideas, you can
refer to our other blogs.
<header>
<div class="logo"><a href="#">ShoPperZ</a></div>
<div class="search">
<a href=""><input type="text" placeholder="search products" id="input">
<ion-icon class="s" name="search"></ion-icon>
</a>
</div>
<div class="heading">
<ul>
<li><a href="#" class="under">HOME</a></li>
<li><a href="#" class="under">SHOP</a></li>
<li><a href="#" class="under">OUR PRODUCTS</a></li>
<li><a href="#" class="under">CONTACT US</a></li>
<li><a href="#" class="under">ABOUT US</a></li>
</ul>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 4/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
</div>
Croma
So when we are using the website there is a problem that it is not able to show all the
menu lists on the navbar. Finally, we decided to make a button-operated menu list. So
when you click on the menu icon It will open into a menu list which you can see in the
next image.
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 5/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<header>
<div class="logo"><a href="#">ShoPperZ</a></div>
<div class="menu">
<a href=""><ion-icon name="close" class="close"></ion-icon></a>
<ul>
<li><a href="#" class="under">HOME</a></li>
<li><a href="#" class="under">SHOP</a></li>
<li><a href="#" class="under">OUR PRODUCTS</a></li>
<li><a href="#" class="under">CONTACT US</a></li>
<li><a href="#" class="under">ABOUT US</a></li>
</ul>
</div>
<div class="search">
<a href=""><input type="text" placeholder="search products" id="input">
<ion-icon class="s" name="search"></ion-icon>
</a>
</div>
<div class="heading">
<ul>
<li><a href="#" class="under">HOME</a></li>
<li><a href="#" class="under">SHOP</a></li>
<li><a href="#" class="under">OUR PRODUCTS</a></li>
<li><a href="#" class="under">CONTACT US</a></li>
<li><a href="#" class="under">ABOUT US</a></li>
</ul>
</div>
<div class="heading1">
<ion-icon name="menu" class="ham"></ion-icon>
</div>
</header>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 6/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
Succeed online.
Now, the header section is over. Let's move forward to the main section.
2. Section:-
Section portion which mainly contains the content of a website, is divided section mainly
into two portions:-
section1 which contains image-slider, contains images. Section2 which contains container
class, contains different items.
In the image-slider, add different images using the img tag. In section2 add a container
named class inside that add items named classes as many items you want in your
website. In every item add item name, item price, item image and item info classes. If you
want you can also add one more class for categories.
<section>
<div class="section">
<div class="section1">
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 7/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<div class="img-slider">
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 8/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<div class="price">$20</div>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 9/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 10/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<div class="price">$56</div>
Note:- Hey..... are you still thinking that why are we giving tag a class name, so the answer
is that it will help you while styling it. Let assume you want to apply the same styling on
many tags, then you need to style every tag one by one then the answer is No...
You can simply give all the tags same-named class and applying styling to one class will
style all the tags having the same class.
3. Footer:-
Footer is the last section of the website. In which add some details. Footer of the above
website is shown below in the picture.
Hope the above picture will help you to understand how to implement it. Firstly, Divide
the footer into main 4 classes namely footer0, footer1, footer2 and footer3.
Now it's time to implement its code.
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 11/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
Inside the footer1 class, add one class for social media icons, then inside add their icons.
Similarly, add more classes in footer2 and footer3 as given below in code.
<footer>
<div class="footer0">
<h1>ShoPperZ</h1>
</div>
<div class="footer1 ">
Connect with us at<div class="social-media">
<a href="#">
<ion-icon name="logo-facebook"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-youtube"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-instagram"></ion-icon>
</a>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 12/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<a href="#">
Code With
<ion-icon Random Home
name="logo-twitter"></ion-icon> Categories Recent Post About Us P
</a>
</div>
</div>
<div class="footer2">
<div class="product">
<div class="heading">Products</div>
<div class="div">Sell your Products</div>
<div class="div">Advertise</div>
<div class="div">Pricing</div>
<div class="div">Product Buisness</div>
</div>
<div class="services">
<div class="heading">Services</div>
<div class="div">Return</div>
<div class="div">Cash Back</div>
<div class="div">Affiliate Marketing</div>
<div class="div">Others</div>
</div>
<div class="Company">
<div class="heading">Company</div>
<div class="div">Complaint</div>
<div class="div">Careers</div>
<div class="div">Affiliate Marketing</div>
<div class="div">Support</div>
</div>
<div class="Get Help">
<div class="heading">Get Help</div>
<div class="div">Help Center</div>
<div class="div">Privacy Policy</div>
<div class="div">Terms</div>
<div class="div">Login</div>
</div>
</div>
<div class="footer3">Copyright © <h4>ShoPperZ</h4> 2021-2028</div>
</footer>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 13/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<!DOCTYPE html>
Code With Random
<html lang="en">
Home Categories Recent Post About Us P
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./ecommerce.css">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
</head>
<body>
<header>
<div class="logo"><a href="#">ShoPperZ</a></div>
<div class="menu">
<a href=""><ion-icon name="close" class="close"></ion-icon></a>
<ul>
<li><a href="#" class="under">HOME</a></li>
<li><a href="#" class="under">SHOP</a></li>
<li><a href="#" class="under">OUR PRODUCTS</a></li>
<li><a href="#" class="under">CONTACT US</a></li>
<li><a href="#" class="under">ABOUT US</a></li>
</ul>
</div>
<div class="search">
<a href=""><input type="text" placeholder="search products" id="input">
<ion-icon class="s" name="search"></ion-icon>
</a>
</div>
<div class="heading">
<ul>
<li><a href="#" class="under">HOME</a></li>
<li><a href="#" class="under">SHOP</a></li>
<li><a href="#" class="under">OUR PRODUCTS</a></li>
<li><a href="#" class="under">CONTACT US</a></li>
<li><a href="#" class="under">ABOUT US</a></li>
</ul>
</div>
<div class="heading1">
<ion-icon name="menu" class="ham"></ion-icon>
</div>
</header>
<section>
<div class="section">
<div class="section1">
<div class="img-slider">
<img src="https://images.pexels.com/photos/6347888/pexels-photo-6347888.jpeg?auto=compress&cs=tinysrg
alt="" class="img">
<img src="https://images.pexels.com/photos/3962294/pexels-photo-3962294.jpeg?auto=compress&cs=tinysrg
alt="" class="img">
<img src="https://images.pexels.com/photos/2292953/pexels-photo-2292953.jpeg?auto=compress&cs=tinysrg
alt="" class="img">
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 14/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<img src="https://images.pexels.com/photos/1229861/pexels-photo-1229861.jpeg?auto=compress&cs=tinysrgb
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 15/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<div class="name">TELEVISION</div>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 16/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<div class="items">
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 17/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
<footer>
Code<div
With Random
class="footer0"> Home Categories Recent Post About Us P
<h1>ShoPperZ</h1>
</div>
<div class="footer1 ">
Connect with us at<div class="social-media">
<a href="#">
<ion-icon name="logo-facebook"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-youtube"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-instagram"></ion-icon>
</a>
<a href="#">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</div>
</div>
<div class="footer2">
<div class="product">
<div class="heading">Products</div>
<div class="div">Sell your Products</div>
<div class="div">Advertise</div>
<div class="div">Pricing</div>
<div class="div">Product Buisness</div>
</div>
<div class="services">
<div class="heading">Services</div>
<div class="div">Return</div>
<div class="div">Cash Back</div>
<div class="div">Affiliate Marketing</div>
<div class="div">Others</div>
</div>
<div class="Company">
<div class="heading">Company</div>
<div class="div">Complaint</div>
<div class="div">Careers</div>
<div class="div">Affiliate Marketing</div>
<div class="div">Support</div>
</div>
<div class="Get Help">
<div class="heading">Get Help</div>
<div class="div">Help Center</div>
<div class="div">Privacy Policy</div>
<div class="div">Terms</div>
<div class="div">Login</div>
</div>
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 18/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
</div>
Code<div
With Random © <h4>ShoPperZ</h4>
class="footer3">Copyright Home Categories
2021-2028</div>
Recent Post About Us P
</footer>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="./ecommerce.js"></script>
</body>
</html>
CSS:-
The structure of the website layout is completed but it doesn't look good without styling.
As human skeletal alone can't look good without skin. So here the work of styling is done
with the help of CSS.
1. Firstly style the header. Use Flex property to align every flex item in the header in a line.
Succeed online.
then use the same for search menu and heading lists as flexbox. then align them in a
horizontal line using properties.
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 19/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
2. set visibility of the menu class and heading class to be hidden because it should appear
Code
whenWith
the sizeRandom Home
of the screen is less. Categories
(when we are using RecentorPost
it in phones tab). About Us P
3. Apply other properties and hover effects( HOVER effect works when the cursor goes
over the tag on which it is applied) to the header files as shown below.
4. Using the keyframe property which is used for the animation (I use for the image slider).
5. Apply styling on the items/products and their classes (flex and some other properties).
6. Similarly, apply some styling on Footer as shown below.
7. Finally when your webpage is ready now it's time to make it responsive so that it also
works fine on small screens(phones).
8. Use media queries property to make it responsive and inside it mention the properties
you want to see when the size of a screen is small.
finally, check your website is ready.
1: *{
2: margin: 0;
3: padding: 0;
4: box-sizing: border-box;
5: }
6: header{
7: display: flex;
8: justify-content: space-evenly;
9: align-items: center;
10: height:60px;
11: width:100%;
12: background:black;
13: }
14: .heading ul{
15: display:flex;
16: }
17: .logo a{
18: color:white;
19: transition-duration: 1s;
20: font-weight: 800;
21: }
22: .logo a:hover{
23: color:rgb(240, 197, 6);
24: transition-duration: 1s;
25: }
26: .heading ul li{
27: list-style: none;
28: }
29: .heading ul li a{
30: margin:5px;
31: text-decoration: none;
32: color:black;
33: font-weight: 500;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 20/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
34: position:relative;
Code With
35: Random
color:white; Home Categories Recent Post About Us P
36: margin:2px 14px;
37: font-size: 18px;
38: transition-duration: 1s;
39: }
40: .heading ul li a:active{
41: color:red;
42: }
43: .heading ul li a:hover{
44: color:rgb(243, 168, 7);
45: transition-duration: 1s;
46: }
47: .heading ul li a::before{
48: content:'';
49: height:2px;
50: width:0px;
51: position:absolute;
52: left:0;
53: bottom:0;
54: background-color: white;
55: transition-duration: 1s;
56: }
57: .heading ul li a:hover::before{
58: width:100%;
59: transition-duration: 1s;
60: background-color:rgb(243, 168, 7);
61: }
62: #input{
63: height:30px;
64: width:300px;
65: text-decoration: none;
66: border:0px;
67: padding:5px;
68: }
69: .logo a{
70: color: white;
71: font-size: 35px;
72: font-weight: 500;
73: text-decoration:none;
74: }
75: ion-icon{
76: width:30px;
77: height:30px;
78: background-color: white;
79: color:black;
80: }
81: ion-icon:hover{
82: cursor: pointer;
83: }
84: .search a{
85: display:flex;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 21/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
86: }
Code With
87: header Random
a ion-icon{ Home Categories Recent Post About Us P
88: position:relative;
89: right:3px;
90: }
91: .img-slider img{
92: height:720px;
93: width:1080px;
94: }
95: @keyframes slide{
96: 0%{
97: left:0px;
98: }
99: 15%{
100: left:0px;
101: }
102: 20%{
103: left:-1080px;
104: }
105: 32%{
106: left:-1080px;
107: }
108: 35%{
109: left:-2160px;
110: }
111: 47%{
112: left:-2160px;
113: }
114: 50%{
115: left:-3240px;
116: }
117: 63%{
118: left:-3240px;
119: }
120: 66%{
121: left:-4320px;
122: }
123: 79%{
124: left:-4320px;
125: }
126: 82%{
127: left:-5400px;
128: }
129: 100%{
130: left:0px;
131: }}
132: .img-slider{
133: display:flex;
134: float:left;
135: position:relative;
136: width:1080px;
137: height:720px;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 22/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
138: animation-name:slide;
Code With
139: Random
animation-duration: 10s; Home Categories Recent Post About Us P
140: animation-iteration-count: infinite;
141: transition-duration:2s ;
142: }
143: .heading1 {
144: opacity:0;
145: }
146: .search{
147: display:flex;
148: position: relative;
149: }
150: .section1{
151: width:1080px;
152: overflow:hidden;
153: justify-content: center;
154: align-items: center;
155: margin:0px auto;
156: }
157: .section2 .container{
158: display:flex;
159: width:100%;
160: height:max-content;
161: flex-wrap: wrap;
162: justify-content:center;
163: margin:10px auto;
164: }
165: .section2 .container .items{
166: margin: 10px;
167: width:200px;
168: height: 300px;
169: background-color:white;
170: border:2.5px solid black;
171: border-radius: 12px;
172: }
173: .section2 .container .items .name{
174: text-align:center;
175: background-color:rgb(240, 197, 6);
176: height:25px;
177: padding-top:4px;
178: color:white;
179: margin: 0;
180: }
181: .section2 .container .items .price{
182: float:left;
183: padding-left:10px;
184: display: block;
185: width:100%;
186: color:rgb(255, 0, 0);
187: font-weight: 650;
188: }
189: .section2 .container .items .info{
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 23/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
190: padding-left:10px;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 24/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
242: color:red;
Code With
243: Random
transform: translateY(5px); Home Categories Recent Post About Us P
244: }
245: .footer2{
246: display: flex;
247: width:100%;
248: justify-content:space-evenly;
249: align-items: center;
250: text-decoration: none;
251: flex-wrap: wrap;
252: }
253: .footer0{
254: font-weight:1200;
255: transition-duration: 1s;
256: }
257: .footer0:hover{
258: color:rgb(243, 168, 7);
259: }
260: .footer2 .heading {
261: font-weight: 900;
262: font-size: 18px;
263: }
264: .footer3 {
265: margin-top:60px;
266: margin-bottom: 20px;
267: display:flex;
268: flex-wrap: wrap;
269: justify-content: center;
270: }
271: .footer2 .heading:hover{
272: color:rgb(243, 168, 7) ;
273: }
274: .footer2 .div:hover{
275: transform: scale(1.05);
276: }
277: .footer3 h4{
278: margin:0 10px;
279: }
280: .footer2 div{
281: margin:10px;
282: }
283: .menu{
284: visibility:hidden;
285: }
286: .heading1 .ham:active{
287: color: red;
288: }
289: .items{
290: overflow:hidden;
291: }
292: .ham,.close{
293: cursor:pointer;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 25/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
294: }
Code
295: With Random
@media screen Home
and (max-width:1250px){ Categories Recent Post About Us P
296: .heading ul li{
297: display:none;
298: }
299: .items{
300: transform:scale(0.9);
301: }
302: .img-slider img{
303: height:60vw;
304: width:80vw;
305: }
306: .ham:active {
307: color:red;
308: }
309: .menu {
310: display:flex;
311: flex-direction: column;
312: align-items: center;
313: }
314: .menu a ion-icon{
315: position: absolute;
316: }
317: @keyframes slide1{
318: 0%{
319: left:0vw;
320: }
321: 15%{
322: left:0vw;
323: }
324: 20%{
325: left:-80vw;
326: }
327: 32%{
328: left:-80vw;
329: }
330: 35%{
331: left:-160vw;
332: }
333: 47%{
334: left:-160vw;
335: }
336: 50%{
337: left:-240vw;
338: }
339: 63%{
340: left:-240vw;
341: }
342: 66%{
343: left:-320vw;
344: }
345: 79%{
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 26/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
346: left:-320vw;
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 27/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
398: height:60%;
Code With
399: Random
animation-name:slide1; Home Categories Recent Post About Us P
400: animation-duration: 10s;
401: animation-iteration-count: infinite;
402: transition-duration:2s ;
403: }
404: .section1{
405: width:80%;
406: overflow:hidden;
407: justify-content: center;
408: align-items: center;
409: margin:0px auto;
410: }
411: .heading1{
412: opacity: 1;
413: position:relative;
414: bottom:8px;
415: }
416: .search a{
417: display:flex;
418: flex-wrap: nowrap;
419: }
420: .heading1 .ham{
421: background-color: black;
422: color:white;
423: }
424: #input{
425: width:200px;
426: flex-shrink:2;
427: }
428: header{
429: height:150px;
430: }
431: }
432: @media screen and (max-width:550px){
433: .heading ul li{
434: display:none;
435: }
436: .heading1{
437: opacity: 1;
438: bottom:8px;
439: }
440: header{
441: height:250px;
442: flex-wrap: wrap;
443: display: flex;
444: flex-direction: column;
445: }
446: #input{
447: width:150px;
448: }
449: .close{
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 28/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
450: z-index:34;}
Code
451: With
.search a{ Random Home Categories Recent Post About Us P
452: display:flex;
453: flex-wrap: nowrap;
454: }
455: }
Heyyy......... wait one more second ! what you said your website is not working properly
when the size of the screen is small. You can not able to open the menu list.🤔
we will solve this problem using Javascript. So, Let's move on to the Javascript portion.
So firstly we want that when we click on the menu icon shown in the below first image
then the menu list should be opened as shown in the next figure and when we click on
the close icon then again we are back to the first page as shown in the first figure.
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 29/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
1: const close=document.querySelector(".close");
2: const open=document.querySelector(".ham");
3: const menu=document.querySelector(".menu")
4: close.addEventListener("click",()=>{
5: menu.style.visibility="hidden";
6: })
7: open.addEventListener("click",()=>{
8: menu.style.visibility="visible";
9: })
Firstly I selected the close, ham and menu named classes using the query selector.
then use the addEventListener(a function that allows us to run functions when some
certain events are performed).
I chose the click event for both close class and ham class so when you click on the icons of
close and menu it will perform the code written inside that function which is supposed to
run.
When we click on the close icon it sets the visibility of the menu class to be hidden (this
makes the code written inside the menu class to be hidden means they are not going to
run anymore.)
While when we click on the menu icon(ham class) it sets the visibility of the menu list to
visible(so now we can see the code snippet running that is written inside the menu class).
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 30/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
completed--------->
Code With Random Home Categories Recent Post About Us P
I hope you have liked your e-commerce website Wait, Did you still not implement it
So why are you waiting, go and implement it now and enjoy your shopping😎.
If you faced any difficulty feel free to comment down your problems and If you really liked
it, please show your love in the comment section this really motivates a blogger to provide
more such content.
Croma
Tags clone project Ecommerce Website Html & CSS Project Project Project Ideas web developer
Facebook Twitter
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 31/32
5/24/22, 12:53 PM Ecommerce Website using HTML CSS and Javascript | Simple and Responsive Ecommerce Website
1 Comments
Kindly upload the zipped source file instead of uploading it in codepen so that we don't
need to actually copy paste whole code for a demo.
Reply
Enter Comment
About Us
https://www.codewithrandom.com/2022/01/ecommerce-website-using-html-css-and.html 32/32