2.常见的基本标签

2018-06-12  本文已影响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>之间; -->
上一篇下一篇

猜你喜欢

热点阅读