?HTML 和 XHTML 的用途是传达结构化的意义,而不是为了样式! 使用css来调整样式。
框架:
<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Visible text goes here
</body>
</html>
html标签
标签 | 描述? |
---|
<style> | 定义样式定义。 | <link> | 定义资源引用。 | <div> | 定义文档中的节或区域(块级)。 | <span> | 定义文档中的行内的小块或区域。 | <head> | 定义关于文档的信息。 | <title> | 定义文档标题。 | <base> | 定义页面中所有链接的基准 URL。 | <link> | 定义资源引用。 | <meta> | 定义元信息。 |
html属性
HTML 4.0 标准属性 (w3chtml.com)
- href="a link"? ? 链接地址属性,在<a> </a>标签中被定义? <a href=" ">? </a> .包含:target属性,规定新链接被显示在何处? ?<a href=" " target="_blank">Visit W3C HTML!</a> 在新窗口打开链接
- name? html内部书签属性,用来命名锚anchor,对读者不可见.? ? xhtml中id代替name? ? ? ? ? ? ? ? ? ? ? ??当使用命名锚(named anchors)时,我们可以创建直接跳至页面中某个节的链接,这样使用者就无需不停的滚动页面来寻找他们需要的信息。HTML 链接 (w3chtml.com)
- bgcolor 背景颜色 style 改变文本样式HTML 样式 (w3chtml.com)
属性 | 值 | 描述 |
---|
class | classname | 规定元素的类名(classname) | id | id | 规定元素的唯一 id | style | style_definition | 规定元素的行内样式(inline style) | title | text | 规定元素的额外信息(可在工具提示中显示) |
xhtml
|