复习前端基础知识

head中:

<!DOCTYPE html>
<!-- 类似html这种格式,标签,html标签 <html>fasdfasdf</html>
# 标签内部的属性-->
<html lang="en">
<head>
    <!-- 声明编码 -->
    <meta charset="UTF-8">
    <!-- 三秒刷新 -->
    <meta http-equiv="Refresh" Content="3">
    <!-- 三秒后跳转到制定网站 -->
    <meta http-equiv="Refresh" Content="3;Url=http://www.autohome.com.cn">
    <!-- 关键字,给搜索引擎用 -->
    <meta name="keywords" content="汽车,汽车之家,汽车网,汽车报价,汽车图片,新闻,评测,社区,俱乐部"/>
    <!-- 对网站的描述 -->
    <meta name="description" content="汽车之家为您提供最新汽车报价,汽车图片,汽车价格大全,最精彩的汽车新闻、行情、评测、导购内容,是提供信息最快最全的中国汽车网站。"/>
    <!-- ie兼容 -->
    <meta http-equiv="X-UA-Compatible" content="IE=IE9;IE=IE8;" />
    <title>老男孩</title>
    
    <link /> 搞图标,欠
    <style />欠
    <script/> 欠
</head>
<body>
    <div></div>

    <a href="http://www.oldboyedu.com">老男孩</a>
</body>
</html>
View Code

猜你喜欢

转载自www.cnblogs.com/Simonsun002/p/9277147.html