基础HTML标签

2018-06-25  本文已影响4人  春暖花开奇奇乐乐

基础HTML标签

只有<body>...<body>之间的内容会被显示出来。Only the content inside the <body> section is displayed in a browser.

标签 描述
<!DOCTYPE> 定义文档格式 defines file type
<html> 定义HTML文档 This is the root element of an HTML page. The HTML document itself begins with <html> and ends with </html>.
<!DOCTYPE html> 所有HTML文档必须使用的定义
<head> A container for all the head elements (title, scripts, styles, meta information, and more) --> contains meta information about the document
<title> 定义文档标题,标题可以用来呈现文档结构 specifies a title for the document
<body> 定义文档的主体 contains the visible page content
<h1> to <h6> 定义 HTML 标题 defines headings
<p> 定义段落 defines a paragraph
<br> or <br /> 定义简单的折行,前者适用于HTML,严格的写法为后者,XHTML无法显示前者 Inserts a single line break
<!--...--> <!-- 这是一个注释 --> 定义注释
<hr> 定义简单的水平线、分割线 It defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.

The HTML <head> element has nothing to do with HTML headings.
The <head> element is a container for metadata. HTML metadata is data about the HTML document. Metadata is not displayed.
Note: Metadata typically define the document title, character set, styles, links, scripts, and other meta information.

HTML Comment Tags


<!-- This is a comment -->

<p>This is a paragraph.</p>

<!-- Remember to add more information here -->

Comments are also great for debugging HTML, because you can comment out HTML lines of code, one at a time, to search for errors:

<!-- Do not display this at the moment
<img border="0" src="pic_trulli.jpg" alt="Trulli">
-->

关于HTML标签

浏览器的作用是什么?

读取并显示HTML文档 The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.

基本HTML编辑器

保存记事本要注意格式和语言 Name the file "index.htm" or "index.html" and set the encoding to UTF-8 (which is the preferred encoding for HTML files).
You can use either .htm or .html as file extension. There is no difference, it is up to you.

上一篇 下一篇

猜你喜欢

热点阅读