Shopping Website
About this app
Shop for all your favorite products online
Shopping Website Shopping Website Home Products Cart Welcome to our Online Store! Shop for all your favorite products online Product 1 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Add to Cart Product 2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Add to Cart Product 3 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Add to Cart © 2021 Shopping Website. All rights reserved.
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Shopping Website</title>
<meta name="description" content="Shop for all your favorite products online">
<meta name="keywords" content="shopping, online, products, ecommerce">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
}
.navbar {
background-color: #333;
padding: 10px;
}
.navbar-brand {
color: #fff;
font-size: 24px;
font-weight: bold;
}
.navbar-nav {
margin-left: auto;
}
.navbar-nav .nav-link {
color: #fff;
margin-left: 10px;
font-size: 18px;
}
.jumbotron {
background-image: url('https://images.unsplash.com/photo-1624128747036-5f5ff95c4992');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
.jumbotron h1 {
font-size: 48px;
margin-bottom: 20px;
}
.jumbotron p {
font-size: 24px;
margin-bottom: 40px;
}
.product-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.product-card img {
width: 150px;
height: 150px;
margin-bottom: 20px;
}
.product-card h3 {
font-size: 24px;
margin-bottom: 10px;
}
.product-card p {
font-size: 18px;
color: #777;
margin-bottom: 20px;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0062cc;
border-color: #0062cc;
}
.btn-primary:active {
background-color: #005cbf;
border-color: #005cbf;
}
.footer {
background-color: #333;
padding: 20px;
color: #fff;
text-align: center;
}
.footer p {
margin-bottom: 0;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
<nav class="navbar">
<div class="container-fluid">
<a class="navbar-brand" href="#">Shopping Website</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Cart</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>Welcome to our Online Store!</h1>
<p>Shop for all your favorite products online</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="product-card">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
<div class="col-md-4">
<div class="product-card">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product 2</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
<div class="col-md-4">
<div class="product-card">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#" class="btn btn-primary">Add to Cart</a>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p>© 2021 Shopping Website. All rights reserved.</p>
</div>
</footer>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!