html
<html>
<body background=""></body>
<p>段落
<h1>-<h6> 六级标题
<a>链接
<img />
<br />
<hr /> 标签在 HTML 页面中创建水平线
<table>
<!-- This is a comment -->
浏览器会移除源代码中多余的空格和空行
html文本格式化
<b>
<strong>
<big>
<em>
<i>
<small>
<sub>
<sup>
<pre>
<code>
<kbd>
<samp>
<var>
<tt>
<address>
<abbr> <dfn>
<acronym>
<bdo dir="rtl">
<blockquote>
<q>
<del> <s>
<ins> <strike>
<cite>
html元素
HTML 元素指的是从开始标签(start tag)到结束标签(end tag)的所有代码。
- HTML 元素以开始标签起始
- HTML 元素以结束标签终止
- 元素的内容是开始标签与结束标签之间的内容
- 某些 HTML 元素具有空内容(empty content)
- 空元素在开始标签中进行关闭(以开始标签的结束而结束)
- 大多数 HTML 元素可拥有属性
HTML 属性
HTML 标签可以拥有属性。属性提供了有关 HTML 元素的更多的信息。
属性值应该始终被包括在引号内。双引号是最常用的,不过使用单引号也没有问题。
在某些个别的情况下,比如属性值本身就含有双引号,那么您必须使用单引号,例如:
name=‘Bill “HelloWorld” Gates’
HTML样式
1.head引用
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
2.head内部样式
<head>
<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>
3.内联
<p style="color: red; margin-left: 20px">
This is a paragraph
</p>
<div>
<span>
图像
<img>
<map>
<area>
表格
id | name | score | |
---|---|---|---|
1 | zhang | 80 | 90 |
2 | li | 99 | |
3 | 100 |
这个表格有一个标题,以及粗边框:
100 | 200 | 300 |
400 | 500 | 600 |
ISBN | Title | Price |
---|---|---|
3476896 | My first HTML | $53 |
2489604 | My first CSS | $47 |
html列表
- 1
- 2
- AAA
- BBB