HTML5是一種新的網(wǎng)頁(yè)編程語(yǔ)言,可以創(chuàng)建出非常流暢、強(qiáng)大的網(wǎng)頁(yè)。本篇文章將介紹如何使用HTML5編寫扣扣登錄界面代碼。
<html> <head> <title>扣扣登錄</title> </head> <body> <form method="post" action="login.php"> <label>賬號(hào):</label> <input type="text" name="account" placeholder="請(qǐng)輸入賬號(hào)" required> <br> <label>密碼:</label> <input type="password" name="password" placeholder="請(qǐng)輸入密碼" required> <br> <input type="submit" value="登錄"> </form> </body> </html>
代碼解釋:
<form method="post" action="login.php">:使用post方法向服務(wù)器提交數(shù)據(jù),目標(biāo)頁(yè)面為login.php。
<label>:定義了一個(gè)表單的標(biāo)簽,用于描述表單控件的作用。
<input type="text" name="account" placeholder="請(qǐng)輸入賬號(hào)" required>:定義了一個(gè)文本框,用于輸入賬號(hào),name屬性為"account",placeholder屬性為空白提示符,required屬性為必填項(xiàng)。
<input type="password" name="password" placeholder="請(qǐng)輸入密碼" required>:定義了一個(gè)密碼框,用于輸入密碼,name屬性為"password",placeholder屬性為空白提示符,required屬性為必填項(xiàng)。
<input type="submit" value="登錄">:定義了一個(gè)提交按鈕,用于提交表單數(shù)據(jù)。
以上就是使用HTML5編寫扣扣登錄界面代碼的方法。