meta http-equiv X-UA-Compatible content IE edge
meta name viewport content width device-width, initial-scale 1.0
title 我的第一个网页 /title
/head
body
!-- 标题标签 --
h1 hello world /h1
h2 hello world /h2
h3 hello world /h3
h4 hello world /h4
h5 hello world /h5
h6 hello world /h6
!-- 段落标签 --
h1 我的第一篇文章 /h1
p 段落段落段落段落段落段落段落 /p
p 段落段落段落段落段落段落段落 /p
p 段落段落段落段落段落段落段落 /p
p 段落段落段落段落段落段落段落 /p
!-- 无序列表:ul,列表元素li--
h1 水果列表 /h1
li 香蕉 /li
li 苹果 /li
li 鸭梨 /li
/ul
!-- 超链接标签 锚点标签 --
!-- href属性 可以指定跳转的地址 --
a href http://www.baidu.com 跳转到baidu /a
a href /login 登录 /a
!-- 图片标签 --
img src banner.jpg alt 图片加载失败……
!-- 无语义标签 --
!-- 块级标签 --
div 123 /div
!-- 内联标签 --
span 123 /span
!-- html常用属性 --
h1 id title1 hello world /h1
h1 id title2 hello world /h1
p class hot 红 /p
p class hot 黄 /p
p class cool 蓝 /p
p class cool 绿 /p
/body
/html