欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

html布局代碼注冊表

老白2年前8瀏覽0評論
使用HTML布局代碼可以創建出各種網頁和Web應用程序。其中,注冊表頁面通常是用來讓用戶注冊和登錄的頁面。下面是一個HTML布局代碼,可以幫助您創建出一個美觀且實用的注冊表頁面。
<html>
<head>
<title>注冊表</title>
<style>
/* 樣式代碼 */
body {
font-family: Arial, sans-serif;
background-color: #f3f3f3;
}
.container {
width: 400px;
margin: 50px auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
padding: 20px;
}
h1 {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
}
label {
font-weight: bold;
margin-bottom: 10px;
}
input[type="text"], input[type="email"], input[type="password"] {
padding: 10px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
}
input[type="submit"] {
padding: 10px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: #fff;
font-size: 18px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #2E8B57;
}
</style>
</head>
<body>
<div class="container">
<h1>注冊新帳戶</h1>
<form action="" method="post">
<label for="username">用戶名</label>
<input type="text" id="username" name="username" required>
<label for="email">郵箱</label>
<input type="email" id="email" name="email" required>
<label for="password">密碼</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="注冊">
</form>
</div>
</body>
</html>
以上代碼使用了語義化HTML元素,例如`<form>`和`<label>`。其它元素也都帶有必要的屬性,例如`required`屬性可以確保這些字段不為空。樣式代碼部分是使用CSS編寫的,并且使用Flexbox布局。整個頁面看起來很漂亮,同時也很易于使用。