- 认识URL,观察常用网站网址,区分不同组成部分。uscheme://host:port/path/?query-string=xxx#anchor11
- 观察web浏览过程.
- HTML基础。练习使用标签制作简单的页面。
<h1></h1>
<hr>
<P>友情链接</P>
<a href=url></a>
<br>
<img src="url" width="258" height="39" alt="gzcc.cn" >
<div></div>区块
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>pageone</title> </head> <body style="text-align:center"> <h1>English story</h1> <h3 style="text-align:center">How much I could have saved</h3> <p>Husband:" Before I married you, I never thought of saving money."</p> <p>Wife:" And now?"</p> <p>Husband:" Now I'm thinking About how much I could have saved if I hadn't married you."</p> <img src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1507734781512&di=37e902beb8a1fc91103488e7a3319dad&imgtype=0&src=http%3A%2F%2Fimgsrc.baidu.com%2Fimgad%2Fpic%2Fitem%2Ffd039245d688d43f72d774d1771ed21b0ef43b93.jpg" width="300" height="300"></a> <br><a style="text-align:center" href="http://www.tingclass.net/show-506-365316-1.html">摘抄原址</a> <hr> <div id="container" style="width:400px;margin:0px auto;" > <div id="header" style="background-color:lightpink"><h2 align="center" style="margin-bottom: 0;">Login System</h2></div> <div id="content" style="background-color:lightgray;height:150px;width:400px;float:left;text-align:center;line-height:40px;"> <form action=""><p></p> Username:<input type="text" name="user"><br> Password:<input type="password" name="password"><br> <input type="button" value="Login" style="margin-right:10px;font-size:15px;"> <input type="button" value="Cancel" style="font-size:15px"> </form> </div> <div id="footer" style="background-color:lightpink;clear:both;text-align:center;">版权 ♡ duym</div> </div> </body> </html>