1. 程式人生 > >web基礎,用html元素制作web頁面

web基礎,用html元素制作web頁面

問答 pla 下拉 cti footer spa 無序 信息 ges

用div,form制作登錄頁面,盡可能做得漂亮。

練習使用下拉列表選擇框,無序列表,有序列表,定義列表。

觀察常用網頁的HTML元素,在實際的應用場景中,用已學的標簽模仿制作。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>廣州商學院</title>
</head>
<body >

<h1>2017學校概括</h1>
<hr>
<P>友情鏈接</
P> <a href="https://www.2345.com/?k15221625">網址導航<img src="http://www.gzcc.cn/2016/images/banner.png" width=250,height=200></a> <div id="container" style="width:400px " > <div id="header" style="background-color:cyan"><h2 align="center" style="margin-bottom:0;">登錄</h2></
div> <div id="content" style="background-color:navajowhite;height:150px;width:400px;float:left;"> <form> username:<input type="text" name="username" placeholder="請輸入用戶名"><br> password:<input type="text" name="password"><br> <
input type="radio">student <input type="radio">teacher <input type="radio">guest<br> <input type="button" value="登錄"> <input type="button" value="重置"> </form> </div> <div id="footer" style="background-color:cyan;clear:both;text-align:center;">版權 duym</div> </div> <div id="container" style="width:400px " > <div id="header" style="background-color:deepskyblue"><h2 align="center" style="margin-bottom:0;">相關欄目/Related sections</h2> </div> <div id="content" style="background-color:lightskyblue;height:150px;width:400px;float:left;"> <form> <select> <option>問答</option> <option>收藏</option> </select> </form> <ul> <li>日常監控</li> <li>課表管理</li> <li>學籍管理</li> <li>教材管理</li> <li>教學簡報</li> </ul> </div> <div id="footer" style="background-color:deepskyblue;clear:both;text-align:center;">版權 duym</div> </div> <div id="container" style="width:400px " > <div id="header" style="background-color:hotpink"><h2 align="center" style="margin-bottom:0;">快速通道 Fast Track</h2> </div> <div id="content" style="background-color:lightskyblue;height:150px;width:400px;float:left;"> <ol> <li>校歷</li> <li>專業課表</li> <li>教務系統</li> </ol> <dl> <dt>學院</dt> <dd>會計學院</dd> <dd>信息學院</dd> </dl> </div> <div id="footer" style="background-color:hotpink;clear:both;text-align:center;">版權 duym</div> </div> </body> </html>

技術分享

web基礎,用html元素制作web頁面