My First Simple
Shopping Site Code
<!DOCTYPE html>
<html>
<head>
<title>Simple Shopping Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
header {
background-color: #333;
color: white;
padding: 15px;
text-align: center;
font-size: 24px;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.product {
background: white;
border-radius: 10px;
margin: 15px;
padding: 15px;
width: 200px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
Shopping Site Code
<!DOCTYPE html>
<html>
<head>
<title>Simple Shopping Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
header {
background-color: #333;
color: white;
padding: 15px;
text-align: center;
font-size: 24px;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.product {
background: white;
border-radius: 10px;
margin: 15px;
padding: 15px;
width: 200px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;