Untitled
unknown
plain_text
2 years ago
852 B
5
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Product Advertisement</title>
<style>
#ad-container {
width: 300px;
background-color: #f5f5f5;
padding: 20px;
text-align: center;
margin: 0 auto;
border: 1px solid #ccc;
box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
h2 {
color: #333;
font-size: 24px;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 18px;
margin-bottom: 20px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
font-size: 18px;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div id="ad-container">
<h2>Amazing Product!</h2>
<p>Get our new product and experience the best quality.</p>
<button>Buy Now</button>
</div>
</body>
</html>
Editor is loading...