web基础

  1. 认识URL,观察常用网站网址,区分不同组成部分。uscheme://host:port/path/?query-string=xxx#anchor11
  2. 观察web浏览过程.
  3. HTML基础。练习使用标签制作简单的页面。 
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>lh-one</title>
    </head>
    <body>
    <h1>练习1</h1>
    
    <div  id="container" style="width:400px " >
        <div id="header" style="background-color:#1a32ff;"><h2 align="center" style="margin-bottom:0;">登录</h2></div>
    
        <div id="content" style="background-color:#EEEEEE;height:150px;width:400px;float:left;"></div>
        <div id="footer" style="background-color:#120bff;clear:both;text-align:center;">版权  duym</div>
    
    </div>
    
    <p>参考链接</p>
    <a href="https://www.baidu.com/">百度一下
        <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-11 17:03  074罗桦  阅读(154)  评论(0编辑  收藏  举报