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

html5登陸按鈕界面代碼

老白2年前8瀏覽0評論

HTML5登陸按鈕界面代碼

<!DOCTYPE html>
<html>
<head>
<title>登陸界面</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin-top: 100px;
margin-right: auto;
margin-left: auto;
text-align: center;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
border-radius: 5px;
}
button[type=submit] {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type=submit]:hover {
background-color: #45a049;
}
img {
width: 150px;
height: 150px;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Logo">
<h2>Login Form</h2>
<form action="#" method="post">
<label for="username"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="username" required>
<label for="password"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" required>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>

代碼說明:

1. <html> 和 <head> 標簽中定義了文檔的基本結構和標題。
2. <style> 標簽中定義了頁面的樣式,包括背景顏色、字體、輸入框樣式、按鈕樣式等。
3. <body> 標簽中定義了頁面的主要內容,包括一個容器 div 元素,其中包含了一個 logo 圖片、一個標題 h2 元素和一個表單 form 元素。
4. 表單包含了兩個輸入框和一個提交按鈕,輸入框分別用 label 元素進行標注,提交按鈕用 button 元素表示,并使用了樣式中定義的樣式。
5. 整個界面使用了居中對齊,可以適配不同大小的屏幕。