1, make the login page with Div,form, do it as beautifully as possible.
2, practice using the drop-down list selection box, the unordered list, the sequence table, and the definition lists.
3, observe the HTML elements of common Web pages, in the actual application scenario, with the learned tag imitation production
As the base code
Operation Result:
<!DOCTYPE HTML><HTMLLang= "en"><Head> <MetaCharSet= "UTF-8"> <title>Educational system</title></Head><Body><HR><DivID= "Container"style= "width:400px"> <DivID= "header"style= "Background-color:aquamarine"><H2Align= "Center"style= "margin-bottom:0;">Login</H2></Div><DivID= "Content"style= "Background-color: #EEEEEE; height:150px;width:400px;float:left;"> <formAction=""> <Select> <option>School Entrance</option> <option>Outside entrance</option> </Select><BR>Account Number:<inputtype= "text"name= "Account"placeholder= "Please enter the school number"><BR>Password:<inputtype= "Password"name= "Password"placeholder= "Please enter password"> <BR> <inputtype= "Radio"name= "Role"value= "Stu">Student<inputtype= "checkbox"name= "Vehicle"value= "Tea">Teachers<BR> <inputtype= "button"value= "Login"> <inputtype= "button"value= "Cancel"> <inputtype= "button"value= "Refresh"> </form><DivID= "Container"style= "width:400px"> <DivID= "header"style= "Background-color:aquamarine"><H2Align= "Center"style= "margin-bottom:0;"></H2></Div><DivID= "Content"style= "Background-color: #EEEEEE; height:150px;width:400px;float:left;"> <formAction=""> <ul> <Li>Transportation Guide</Li> <Li>Careers</Li> <Li>Partner institutions</Li> <Li>Information disclosure</Li> </ul> <DL> </Div></Div></Body></HTML>
Web base, creating Web pages with HTML elements