Viết đoạn mã HTML và CSS để tạo một trang web gồm:
Giải thích
<!DOCTYPE html>
<html>
<head>
<title>Trang cá nhân</title>
<style>
h1 {
color: purple;
text-align: center;
color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">: 32px;
}
.container {
width: 400px;
}
input[type="email"] {
width: 50%; /* 200px */
}
</style>
</head>
<body>
<h1>Trang cá nhân</h1>
<divclass="container">
<form>
<inputtype="email"name="email"placeholder="Nhập email">
<inputtype="submit"value="Gửi">
</form>
</div>
</body>
</html>