zoukankan      html  css  js  c++  java
  • WEB基础

    1. 认识URL,观察常用网站网址,区分不同组成部分。uscheme://host:port/path/?query-string=xxx#anchor11
    2. 观察web浏览过程.
    3. HTML基础。练习使用标签制作简单的页面。
    复制代码
     1 <!DOCTYPE html>
     2 <html lang="en">
     3 
     4 <head>
     5     <meta charset="UTF-8">
     6     <title>广州商学院</title>
     7 </head>
     8 
     9 <body>
    10     <h1 align="center">资讯</h1>
    11     <a href="http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1011/8308.html" target="_blank">校园新闻</a>
    12     <img src="http://oa.gzcc.cn/uploadfile/2017/1011/thumb_685_450_20171011054849219.jpg" class="index-news-thumb-focus">
    13     <div class="gray" style="">
    14                <a href="http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1011/8308.html" target="_blank"> 扎实推进“活力广商”建设</a>
    15     </div>
    16 </body>
    17 </html>
    复制代码

  • 相关阅读:
    codeforces round #433 div2
    bzoj1951
    bzoj3620
    bzoj2286
    bzoj1513
    bzoj4390
    codeforces round 430 div 2
    bzoj3339
    准备实现体积蒙皮
    看牛顿法的改进与验证局部收敛
  • 原文地址:https://www.cnblogs.com/lianghaohui123/p/7663636.html
Copyright © 2011-2022 走看看