02-全局标签

1. html

<html>:表示html页面的开始
html>:表示html页面的结束
2. head
title:网页的标题
meta:对编码的设置,设置关键字,对网页的描述
    name:规定我们的meta标签的作用
        keywords description
    content:
link:用于链接外部文件,css、js
3. body
内容区,所有的内容,都是写在body标签中的
4. 案例:

<html>
<head>
    <title>标题title>
    <meta charset="utf-8">
    <meta name="keywords" content="关键字">
    <meta name="description" content="描述">
    <link rel="stylesheet" type="text/css" href="链接">
head>
<body>
    所有的内容都写在这
body>
html>

你可能感兴趣的:(前端)