web基础,用html元素制作web页面
用div,form制作登录页面,尽可能做得漂亮。
练习使用下拉列表选择框,无序列表,有序列表,定义列表。
观察常用网页的HTML元素,在实际的应用场景中,用已学的标签模仿制作。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>MIS问答平台</title> </head> <body> <h1 align="center"> MIS2015 </h1> <h4>登陆</h4> <div id="container" style="width:400px " > <div id="header" style="background-color:#ffc60c;"><h2 align="center" style="margin-bottom:0;">登录</h2></div> <div id="content" style="background-color:#EEEEEE;height:150px;width:400px;float:left;"> <form action=""> Username:<input type="text" name="用户名" placeholder="请输入用户名" ><br> Password:<input type="password" name="密码"><br> <input type="radio" name="role" value="stu">学生 <input type="radio" name="role" value="tea">老师 <input type="radio" name="role" value="vic">游客<br> <input type="button" value="登录"> <input type="button" value="取消"> </form> </div> <div id="footer" style="background-color:#ff5a20;clear:both;text-align:center;">版权 © duym</div> </div> <div id="container" style="width:400px " > <div id="header" style="background-color:#ffc60c;"><h2 align="center" style="margin-bottom:0;">登录</h2></div> <div id="content" style="background-color:#EEEEEE;height:150px;width:400px;float:left;"> <form action=""> <select> <option>提问</option> <option>收藏</option> <option>点评</option> </select> </form> <ol> <li>教务系统 </li> <li>网络服务</li> <li>校内新闻</li> </ol> </div> <div id="footer" style="background-color:#ff5a20;clear:both;text-align:center;">版权 © duym</div> </div> <p>教务系统</p>> <a href ="http://oa.gzcc.cn/index.php?m=content&c=index&a=show&catid=42&id=967">广州商学院教务系统</a> <img src ="http://jxc.gzcc.cn/images/logo.jpg"> <p>网络服务</p> <a href ="http://nc.gzcc.cn/html/yhfw/">广州商学院网络服务</a> <img src ="http://nc.gzcc.cn/images/sub_pic.jpg"> <p>校园新闻</p> <a href ="http://news.gzcc.cn/html/xiaoyuanxinwen/">广州商学院新闻网</a> <img src ="http://news.gzcc.cn/2016/images/banner.png"> <br>扎实推进“活力广商”建设 <hr> </body> </html>