Make a login page with Div,form and do it as beautifully as possible.
Practice using the drop-down list selection box, the unordered table, the list of sequences, and the definition lists.
Observe the HTML elements of commonly used Web pages, and use the learned tags to mimic the actual application scenarios.
<!DOCTYPE HTML><HTMLLang= "en"><Head> <MetaCharSet= "UTF-8"> <title>Login interface</title></Head><Body><DivID= "Container"style= "width:400px" > <DivID= "header"style= "Background-color:deepskyblue;"><H2Align= "Center"style= "margin-bottom:0;">Login</H2></Div> <DivID= "Content"style= "Background-color:lightskyblue;height:150px;width:400px;float:left;"> <formAction="">Username:<inputtype= "text"name= "User"placeholder= "Please enter user name"><BR>Password:<inputtype= "Password"name= "Password"placeholder= "Please enter password"> <BR> <inputtype= "Radio"name= "Role"value= "Stu">Student<inputtype= "Radio"name= "Role"value= "Teacher">Teacher<BR> <inputtype= "button"value= "Login"> <inputtype= "button"value= "Cancel"> </form> </Div> <DivID= "Footer"style= "Background-color:deepskyblue;clear:both;text-align:center;">Copyright? Duym</Div></Div><DivID= "Container"style= "width:400px" > <DivID= "header"style= "Background-color:deepskyblue;"><H2Align= "Center"style= "margin-bottom:0;">Search</H2></Div> <DivID= "Content"style= "Background-color:lightskyblue;height:200px;width:400px;float:left;"> <Select> <optionvalue=""style= "color: #c2c2c2;">---Please select---</option> <option>Students</option> <option>Teachers</option> <option>Visitors</option> </Select> <ul> <Li>School Calendar</Li> <Li>School newspaper</Li> <Li>Information disclosure</Li> </ul> <ol> <Li>Library</Li> <Li>Educational system</Li> </ol> </Div> <DivID= "Footer"style= "Background-color:deepskyblue;clear:both;text-align:center;">Copyright? Duym</Div><HR> <P>Friendship Link</P> <ahref= "http://www.gzcc.cn/">Guangzhou Business School<BR> <imgsrc= "Http://www.gzcc.cn/2016/images/banner.png"width= "258"Height= "The "alt= "gzcc.cn" ></a></Body></HTML>
Web base, creating Web pages with HTML elements