基本概念
- 元素。标签成对出现,中间就是元素。
- 属性。提供信息,在开始标签里。
元素分类
- block元素 如
p, h1, header
等 - inline元素 如
img, a
等 - 空元素 如
br, hr
等
头部元素
标题 title
title是整个html文档的标题
h1是用来标记页面内容的标题
数据 meta
charset=“utf-8”
author,description…
链接 link
- rel用于指定作用 “shortcut icon” “stylesheet”(似乎古老)
- href指定位置 “http://…”
样式 style
脚本 script
用src指定位置(source)
超链接
likethis
1 | <a href="http://pushinl.github.io" title="qwq">Blog</a> |
URL
定义网络位置
先咕