html
Copy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Install Ad</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
.container {
width: 100%;
max-width: 400px;
margin: 0 auto;
padding: 20px;
text-align: center;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
font-size: 24px;
margin-bottom: 15px;
}
p {
color: #777;
font-size: 16px;
margin-bottom: 20px;
}
.cta-btn {
background-color: #ff5733;
color: #fff;
font-size: 18px;
padding: 15px 30px;
border-radius: 25px;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
display: inline-block;
transition: background-color 0.3s;
}
.cta-btn:hover {
background-color: #e14f2f;
}
.app-image {
width: 100%;
height: auto;
max-width: 300px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<img src="https://via.placeholder.com/300x500.png?text=App+Image" alt="App Image" class="app-image">
<h1>Discover Amazing Features</h1>
<p>Get the app today and unlock exclusive features. Join millions of users!</p>
<a href="https://your-app-link.com" class="cta-btn">Install Now</a>
</div>
</body>
</html>
2
2
2KB
2KB
100.0ms
608.0ms
104.0ms