码迷,mamicode.com
首页 > Web开发 > 详细

HTML之HTML基础

时间:2019-06-23 15:32:54      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:设置   bsp   icon   image   html5   通过   cut   har   shortcut   

HTML

一个个具有不同样式的标签组合成的一大堆字符串,由浏览器解析就形成了我们看到的网页

 

基础HTML代码

<!DOCTYPE html>  <!--告诉浏览器这是一个HTML,通过html5 解析下方代码-->

<html lang="en"> <!--html标签,一个页面只有一对,指定语言-->
<head>
    <!--指定当前页面的字符集编码-->
    <meta charset="UTF-8">
    <!--每1秒钟刷新一下-->
    <meta http-equiv="refresh" content="1">
    <!--1秒后跳转到www.baidu.com-->
    <meta http-equiv="refresh" content="1;http://www.baidu.com">
    <!--关键字检索,网络爬虫就根据这个keywords-->
    <meta name="keywords" content="besttest">
    <!--网站描述-->
    <meta name="description" content="这是内容">
    <!--ie打开时以最高兼容模式打开-->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <!--浏览器tag上的名字-->
    <title>我的tag</title>
    <!--设置tag上的小图标-->
    <link rel="shortcut icon" href="http://ui.imdsx.cn/static/image/dsx_Small.jpg">
    <!--引入css样式表-->
    <link rel="stylesheet" href="xxx.css">
    <!--在这标签内可以写css的一些样式-->
    <style></style>
    <!--引入js或编写js-->
    <script src="tmp.js"></script>
</head>
<body>

</body>
</html>

 

HTML标签

自闭合标签 如<br>这种不成对出现的

主动标签标签  如<p></p>这样需要成对出现的

HTML之HTML基础

标签:设置   bsp   icon   image   html5   通过   cut   har   shortcut   

原文地址:https://www.cnblogs.com/yanyan-/p/11072735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!