主頁 > 知識庫 > Html制作簡單而漂亮的登錄頁面

Html制作簡單而漂亮的登錄頁面

熱門標(biāo)簽:高德地圖標(biāo)注廁所 中國地圖標(biāo)注城市的 地圖標(biāo)注沿海城市房價 地圖標(biāo)注員工作內(nèi)容 通遼地圖標(biāo)注app 智能語音電銷機(jī)器人客戶端 威海語音外呼系統(tǒng)平臺 西安金倫外呼系統(tǒng) 江西ai電銷機(jī)器人如何

先來看看樣子。

html源碼:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>Login</title>  
  6.     <link rel="stylesheet" type="text/css" href="Login.css"/>  
  7. </head>  
  8. <body>  
  9.     <div id="login">  
  10.         <h1>Login</h1>  
  11.         <form method="post">  
  12.             <input type="text" required="required" placeholder="用戶名" name="u"></input>  
  13.             <input type="password" required="required" placeholder="密碼" name="p"></input>  
  14.             <button class="but" type="submit">登錄</button>  
  15.         </form>  
  16.     </div>  
  17. </body>  
  18. </html>  

css代碼:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. html{   
  2.     width: 100%;   
  3.     height: 100%;   
  4.     overflowhidden;   
  5.     font-stylesans-serif;   
  6. }   
  7. body{   
  8.     width: 100%;   
  9.     height: 100%;   
  10.     font-family'Open Sans',sans-serif;   
  11.     margin: 0;   
  12.     background-color#4A374A;   
  13. }   
  14. #login{   
  15.     positionabsolute;   
  16.     top: 50%;   
  17.     left:50%;   
  18.     margin: -150px 0 0 -150px;   
  19.     width300px;   
  20.     height300px;   
  21. }   
  22. #login h1{   
  23.     color#fff;   
  24.     text-shadow:0 0 10px;   
  25.     letter-spacing1px;   
  26.     text-aligncenter;   
  27. }   
  28. h1{   
  29.     font-size: 2em;   
  30.     margin: 0.67em 0;   
  31. }   
  32. input{   
  33.     width278px;   
  34.     height18px;   
  35.     margin-bottom10px;   
  36.     outlinenone;   
  37.     padding10px;   
  38.     font-size13px;   
  39.     color#fff;   
  40.     text-shadow:1px 1px 1px;   
  41.     border-top1px solid #312E3D;   
  42.     border-left1px solid #312E3D;   
  43.     border-right1px solid #312E3D;   
  44.     border-bottom1px solid #56536A;   
  45.     border-radius: 4px;   
  46.     background-color#2D2D3F;   
  47. }   
  48. .but{   
  49.     width300px;   
  50.     min-height20px;   
  51.     displayblock;   
  52.     background-color#4a77d4;   
  53.     border1px solid #3762bc;   
  54.     color#fff;   
  55.     padding9px 14px;   
  56.     font-size15px;   
  57.     line-heightnormal;   
  58.     border-radius: 5px;   
  59.     margin: 0;   
  60. }  

總結(jié):

復(fù)制代碼
代碼如下:
<input type="text" required="required" **placeholder="用戶名"** name="u"></input>
<input type="password" required="required" **placeholder="密碼"** name="p"></input>

placeholder="用戶名"的作用:占位符

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助。

標(biāo)簽:北海 阜陽 營口 崇左 眉山 晉中 青海 河池

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Html制作簡單而漂亮的登錄頁面》,本文關(guān)鍵詞  Html,制作,簡單,而,漂,亮的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Html制作簡單而漂亮的登錄頁面》相關(guān)的同類信息!
  • 本頁收集關(guān)于Html制作簡單而漂亮的登錄頁面的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章