My Store
Welcome to My Store
Discover our latest collections
Product 1
$49.99
Product 2
$59.99
CSS Styling
css
Skopiuj kod
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #fff;
border-bottom: 1px solid #ccc;
}
.logo img {
max-height: 50px;
}
nav ul {
list-style: none;
display: flex;
gap: 15px;
}
nav a {
text-decoration: none;
color: #333;
}
.search-bar input {
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
}
.hero {
background-color: #f4f4f4;
text-align: center;
padding: 50px 20px;
}
.hero h1 {
margin: 0;
font-size: 2em;
}
.hero p {
font-size: 1.2em;
color: #777;
}
.products {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 20px;
}
.product {
text-align: center;
padding: 10px;
max-width: 200px;
}
.product img {
max-width: 100%;
height: auto;
border: 1px solid #ddd;
margin-bottom: 10px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.footer-links,
.social-media {
margin-bottom: 10px;
}
.footer-links a,
.social-media a {
color: #fff;
text-decoration: none;
margin: 0 5px;
}