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

用div,form制作登录页面,尽可能做得漂亮。

练习使用下拉列表选择框,无序列表,有序列表,定义列表。

观察常用网页的HTML元素,在实际的应用场景中,用已学的标签模仿制作。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>lh-two</title>
</head>
<body>
<h1 style="text-align: center">请进行登录</h1>

<div  id="denglu" style="width:400px ">
    <div id="header" style="background-color:#0080ff;"><h2 align="center" style="margin-bottom:0;">登录</h2></div>

    <div id="content" style="background-color:#EEEEEE;height:150px;width:400px;float:left;">
        <form>
            firstname:<input type="text"name="firstname"placeholder="请输入用户名"><br>
            password:<input type="password"name="password"placeholder="请输入密码"><br>
            <input type="radio"name="role"value="stu">student
            <input type="radio"name="role"value="tch">teacher<br>
            <input type="button"value="log in">
        </form></div>
    <div id="footer" style="background-color:#0080ff;clear:both;text-align:center;">版权  duym</div>
</div>

<div  id="wedang" style="width:400px">
    <div id="header" style="background-color:#66b3ff;"><h2 align="center" style="margin-bottom:0;">相关文档</h2></div>

    <div id="content" style="background-color:#ffffce;height:200px;width:400px;float:left;">
        <form>
        <select>
            <option>查询</option>
            <option>收藏</option>
            <option>选择</option>
        </select>
        </form>
        <ul>
            <li>专业</li>
            <li>教学</li>
            <li>课程</li>
        </ul>
        课程要求:
        <ol>
            <li>严格按照教学制度</li>
            <li>对课程严格监管</li>
        </ol>
</div>
    <div id="footer" style="background-color:#66b3ff;clear:both;text-align:center;">版权  duym</div>
    </div>

<div  id="school" style="width:400px" >
    <div id="header" style="background-color:#66b3ff;"><h2 align="center" style="margin-bottom:0;">学校构成</h2></div>
    <div id="content" style="background-color:#ffffce;height:100px;width:400px;float:left;">
        <dl>
            <dt>学院类别</dt>
            <dd>信息学院</dd>
            <dd>艺术学院</dd>

        </dl>
    </div>
    <div id="footer" style="background-color:#66b3ff;clear:both;text-align:center;">版权  duym
    </div>

<p>参考链接</p>
<a href="http://www.gzcc.cn/">广州商学院
    <br><img src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1508316961&di=bb8764ce4ad8f8d52bfa3e8a96579948&imgtype=jpg&er=1&src=http%3A%2F%2Fimg4.duitang.com%2Fuploads%2Fitem%2F201508%2F17%2F20150817231259_Y8nR2.thumb.700_0.jpeg"width="100" height="100" alt="土间埋" >
</a>
</body>
</html>

posted @ 2017-10-13 14:06  074罗桦  阅读(322)  评论(0编辑  收藏  举报