兩年大專生活匆匆而過,身邊的朋友也都各奔東西,9月份開始實習感受本身的前端功底有所欠缺,這個暑假除了打工我還有一個半月的學習時間但願本身可以充分利用這段時間。7月3號所學知識在此作如下總結以便本身複習回顧,和他人蔘考。php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action=""> <fieldset> <legend>學生檔案</legend> <label>姓名:<input type="text" placeholder="請輸入學生名字" /></label><br/><br/> <label>手機號:<input type="tel"/></label><br/><br/> <label>郵箱:<input type="email"/></label><br/><br/> 所屬學院: <input type="text" placeholder="請選擇學院" list="xueyuan"/> <datalist id="xueyuan"> <option>java學院</option> <option>.net學院</option> <option>php學院</option> <option>大數據學院</option> <option>安卓學院</option> </datalist><br/><br/> <label>出生日期:<input type="date"/></label><br/><br/> <label>成績: <input type="number"/></label><br/><br/> <label>畢業時間:<input type="date"/></label><br/><br/> <input type="submit"/><input type="reset"/> </form> </body> </html>
sublime中實現自動換行是在setting.json中添加以下代碼html