单页面HTML宣传APP代码
<!DOCTYPE html>
<html>
<head>
<title>My Awesome App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
}
h1 {
font-size: 3em;
margin: 0;
}
h2 {
font-size: 2em;
margin: 0;
margin-top: 30px;
}
p {
font-size: 1.2em;
line-height: 1.5;
margin: 0;
margin-top: 20px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 1.2em;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
@media screen and (max-width: 500px) {
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
p {
font-size: 1em;
}
button {
font-size: 1em;
}
}
</style>
</head>
<body>
<header>
<h1>My Awesome App</h1>
</header>
<main>
<h2>What is My Awesome App?</h2>
<p>My Awesome App is the perfect tool for managing your daily tasks and staying organized. With features like a to-do list, calendar, and reminders, you'll never forget an important task again.</p>
<h2>Why Choose My Awesome App?</h2>
<p>My Awesome App is the most user-friendly and intuitive app on the market. Our clean and simple interface makes it easy to use for anyone, regardless of their technical knowledge.</p>
<h2>Get My Awesome App Now!</h2>
<button>Download Now</button>
</main>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/9jl 著作权归作者所有。请勿转载和采集!