码迷,mamicode.com
首页 > Web开发 > 详细

web基础,用html元素制作web页面

时间:2017-10-13 20:21:27      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:ade   images   inpu   color   bsp   href   平台   网页   for   

用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>

技术分享

 

web基础,用html元素制作web页面

标签:ade   images   inpu   color   bsp   href   平台   网页   for   

原文地址:http://www.cnblogs.com/YWEIEN/p/7660356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!