html回炉重造

<!-- DOCTYPE告诉浏览器使用什么规范-->
<!DOCTYPE html>
<html lang="en">
<!--head标签代表网页头部-->
<head>
<!--    meta描述性标签,来描述我们网站的一些信息-->
<!--    meta一遍来做SEO-->
    <meta charset="UTF-8">
    <meta name="keywords" content="关键字">
    <meta name="description" content="内容">
<!--    titl 内容-->
        <title>Title</title>
</head>
<!--body 网页主体-->
<body>
<!--标题标签-->
<h1 name="top">1</h1>
<h2>2</h2>
<h3>3</h3>
<h4>4</h4>
<h5>5</h5>
<h6>6</h6>

<!--段落标签-->
<p>走过一条寂寞的街角 期盼一张熟悉的微笑 一首老情歌听湿了眼睛 继续爱下去我会怎样</p>
<p>如果不能完全的遗忘  时间是否真能够疗伤 面对这一身累积的痴狂 托付给谁有没有罪</p>
<p>回忆再美好也只是曾经 守护是我们彼此的约定</p>
<p>风轻轻的吹 我们的歌谣 是谁唱着哄你入睡</p>

<!--水平线标签-->
<hr/>
<!--换行标签-->
走过一条寂寞的街角 期盼一张熟悉的微笑 一首老情歌听湿了眼睛 继续爱下去我会怎样 <br/>
如果不能完全的遗忘  时间是否真能够疗伤 面对这一身累积的痴狂 托付给谁有没有罪 <br/>
回忆再美好也只是曾经 守护是我们彼此的约定 <br/>
风轻轻的吹 我们的歌谣 是谁唱着哄你入睡 <br/>
<!--字体样式标签-->
粗体 : <strong> 粗体</strong> 斜体: <em> 斜体</em>
<!--图片标签-->
<img src="地址" alt="图像替代文字" title="鼠标悬停文字" width="宽度" height="高度"> <br/>
<!--链接标签
<a href="链接路劲" target="链接在那个窗口打开" _self当前页面 _blank新页面  ></a>
-->
<a href="#" target="123">123</a>
<!--锚链接-->
<a href="#top">回到顶部</a> <br/>

<!--功能性链接-->
<a href="mailto:645775992@qq.com">邮件</a><br>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2::53" alt="发个消息" title="发个消息"/></a>

<!-- 列表 -->
<ul>
  <li>a</li>
  <li>b</li>
  <li>c</li>
</ul>

<ol>
  <li>a</li>
  <li>b</li>
  <li>c</li>
</ol>
<dl>
  <dt>表头</dt>
  <dd>a</dd>
  <dd>b</dd>
  <dd>c</dd>
</dl>
<!-- 表格  tr行 td列 rowspan跨行 colspan跨列-->

<!-- 媒体 -->

<video src="" controls autoplay></video>
<audio src="" controls autoplay> </audio>

<!-- 内联框架 iframe -->
<iframe src="" frameborder="0" name="address"></iframe>
<a href="" target="address"></a>

<!-- 表单 
from get/post
隐藏 hidden
只读 readonly
禁用 disabled
提示 plachehoder
非空 required
正则 parrennt
-->
<input type="text" value="username">
<input type="password" value="">
<input type="radio" value="">
<input type="checkbox" value="">
<input type="button" value="">
<input type="search" value="">
<select>
  <option>选项1</option>
  <option>选项2</option>
</select>
<input type="range" value="" min="0" max="100" step="2">
<input type="button" value="">
<input type="button" value="">

</body>
</html>
Title

1

2

3

4

5
6

走过一条寂寞的街角 期盼一张熟悉的微笑 一首老情歌听湿了眼睛 继续爱下去我会怎样

如果不能完全的遗忘 时间是否真能够疗伤 面对这一身累积的痴狂 托付给谁有没有罪

回忆再美好也只是曾经 守护是我们彼此的约定

风轻轻的吹 我们的歌谣 是谁唱着哄你入睡


走过一条寂寞的街角 期盼一张熟悉的微笑 一首老情歌听湿了眼睛 继续爱下去我会怎样
如果不能完全的遗忘 时间是否真能够疗伤 面对这一身累积的痴狂 托付给谁有没有罪
回忆再美好也只是曾经 守护是我们彼此的约定
风轻轻的吹 我们的歌谣 是谁唱着哄你入睡
粗体 : 粗体 斜体: 斜体 图像替代文字
123 回到顶部

邮件

发个消息

  • a
  • b
  • c
  1. a
  2. b
  3. c
表头
a
b
c


posted @ 2020-11-06 16:17  野兽Gentleman  阅读(91)  评论(0编辑  收藏  举报