Product Card
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET" type="text/css" href="web.css">
<title>web design</title>
</head>
<body>
<h1 style="text-align: center;">Product Card</h1>
<div class="card">
<img src="jeans3.jpg" style="width: 100%;">
<h1>Triloard Jeans</h1>
<p class="pirce">$19.99</p>
<p>Some text about the jeans. Super slim and comfy lorem ipsum lorem jeansum. Lorem jeamsun denim lorem jeansum.
</p>
<p><button>ADD TO Cart</button></p>
</div>
</body>
</html>
CSS Product Card Style
.card{
box-shadow:0px 4px 8px 0 rgba(0,0,0,0.2) ;
max-width:300px;
margin: auto;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.price{
color: gray;
font-size:22px;
}
button{
background-color: black;
color: white;
border: none;
padding:12px ;
text-align: center;
width:100%;
cursor: pointer;
font-size:18px ;
}
No comments:
Post a Comment