HTML5登錄界面示例代碼
以下是一個(gè)基本的HTML5登錄界面示例代碼,它包括一個(gè)登錄表單和一個(gè)注冊(cè)鏈接。該代碼可以輕松地使用CSS樣式表進(jìn)行樣式定制:
<!DOCTYPE html> <html> <head> <title>登錄界面</title> </head> <body> <h1>歡迎登錄!</h1> <form> <p> <label for="username">用戶(hù)名:</label> <input type="text" id="username" name="username" required> </p> <p> <label for="password">密碼:</label> <input type="password" id="password" name="password" required> </p> <p> <input type="checkbox" id="remember" name="remember"> <label for="remember">記住我</label> </p> <p> <button type="submit">登錄</button> </p> </form> <p>還沒(méi)有帳號(hào)?<a href="register.html">立即注冊(cè)</a></p> </body> </html>該代碼中包括一個(gè)\