美文网首页
2.常见的基本标签

2.常见的基本标签

作者: 若愚同学 | 来源:发表于2018-06-12 22:45 被阅读0次

    基本标签

    <!-- .... -->:定义HML注释的标签;
    
    <html>
    <!--定义HTML文档的根标签-->
    <!--在这里插入内容-->
    </html>
    
    <title>:<!--定义HTML页面标题,放置于<head></head>之间;-->
    <body>:<!-- 定义HTML页面主体部分; -->
    <meta>:<!-- 定义文件信息,对网页进行说明,便于搜索引擎查找,放置于<head></head>之间; -->
    
    //设置关键字
    <meta name = "keywords" content="Coding"/>
    
    //设置描述
    <meta name = "description" content="架构师之路"/>
    
    //设置作者
    <meta name = "author" content="classmate-lin"/>
    
    //设置字符集
    <meta http-equiv ="content-type" content="text/html;charset=utf-8"/>
    
    //设置页面定时跳转:
    <meta http-equiv = "refresh" content="时间秒数;url=网页地址"/>
    
    //css文件的引入
    <style>:<!-- 用于引入CSS文件,一般放于<head></head>之间; -->
    
    //js文件的引入
    <script>:<!-- 用于引入JavaScript文件,一般放于<head></head>之间; -->
    

    相关文章

      网友评论

          本文标题:2.常见的基本标签

          本文链接:https://www.haomeiwen.com/subject/kucdeftx.html