[html]<form action="action_page.php">
<div class="container">
<h2>Подпишитесь на нашу рассылку</h2>
<p>Текст Lorem ipsum о том, почему вы должны подписаться на нашу рассылку blabla. Текст Lorem ipsum о том, почему вы должны подписаться на нашу рассылку blabla...</p>
</div>
<div class="container" style="background-color:white">
<input type="text" placeholder="Имя" name="name" required>
<input type="text" placeholder="Адрес электронной почты" name="mail" required>
<label>
<input type="checkbox" checked="checked" name="subscribe"> Ежедневная рассылка
</label>
</div>
<div class="container">
<input type="submit" value="Подписаться">
</div>
<style>
/* Style the form element with a border around it */
form {
border: 4px solid #f1f1f1;
}
/* Add some padding and a grey background color to containers */
.container {
padding: 20px;
background-color: #f1f1f1;
}
/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
width: 100%;
padding: 12px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Add margins to the checkbox */
input[type=checkbox] {
margin-top: 16px;
}
/* Style the submit button */
input[type=submit] {
background-color: #4CAF50;
color: white;
border: none;
}
input[type=submit]:hover {
opacity: 0.8;
}
</style>
[/html]
Шаг 1) добавить HTML
<form action="action_page.php"> <div class="container"> <h2>Subscribe to our Newsletter</h2> <p>Lorem ipsum..</p> </div> <div class="container" style="background-color:white"> <input type="text" placeholder="Name" name="name" required> <input type="text" placeholder="Email address" name="mail" required> <label> <input type="checkbox" checked="checked" name="subscribe"> Daily Newsletter </label> </div> <div class="container"> <input type="submit" value="Subscribe"> </div> </form>
Шаг 2) добавить CSS:
/* Style the form element with a border around it */ form { border: 4px solid #f1f1f1; } /* Add some padding and a grey background color to containers */ .container { padding: 20px; background-color: #f1f1f1; } /* Style the input elements and the submit button */ input[type=text], input[type=submit] { width: 100%; padding: 12px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; box-sizing: border-box; } /* Add margins to the checkbox */ input[type=checkbox] { margin-top: 16px; } /* Style the submit button */ input[type=submit] { background-color: #4CAF50; color: white; border: none; } input[type=submit]:hover { opacity: 0.8; }
- Подпись автора