MindMap Gallery HTML basic elements
The basic elements of HTML are divided into three modules: structural elements, text format, and character format. Content test points to help friends quickly master the basic elements of HTML!
Edited at 2023-02-26 19:51:35El cáncer de pulmón es un tumor maligno que se origina en la mucosa bronquial o las glándulas de los pulmones. Es uno de los tumores malignos con mayor morbilidad y mortalidad y mayor amenaza para la salud y la vida humana.
La diabetes es una enfermedad crónica con hiperglucemia como signo principal. Es causada principalmente por una disminución en la secreción de insulina causada por una disfunción de las células de los islotes pancreáticos, o porque el cuerpo es insensible a la acción de la insulina (es decir, resistencia a la insulina), o ambas cosas. la glucosa en la sangre es ineficaz para ser utilizada y almacenada.
El sistema digestivo es uno de los nueve sistemas principales del cuerpo humano y es el principal responsable de la ingesta, digestión, absorción y excreción de los alimentos. Consta de dos partes principales: el tracto digestivo y las glándulas digestivas.
El cáncer de pulmón es un tumor maligno que se origina en la mucosa bronquial o las glándulas de los pulmones. Es uno de los tumores malignos con mayor morbilidad y mortalidad y mayor amenaza para la salud y la vida humana.
La diabetes es una enfermedad crónica con hiperglucemia como signo principal. Es causada principalmente por una disminución en la secreción de insulina causada por una disfunción de las células de los islotes pancreáticos, o porque el cuerpo es insensible a la acción de la insulina (es decir, resistencia a la insulina), o ambas cosas. la glucosa en la sangre es ineficaz para ser utilizada y almacenada.
El sistema digestivo es uno de los nueve sistemas principales del cuerpo humano y es el principal responsable de la ingesta, digestión, absorción y excreción de los alimentos. Consta de dos partes principales: el tracto digestivo y las glándulas digestivas.
HTML basic elements
Structural elements
The elements that can be included between <head> and </head> mainly include: meta, title, base, style, and link. meta: Define page meta information title: Set the page title base: Set the base URL
<head> <meta charset="utf-8"> <title>Page title</title> <base href="http://www.cufe.edu.cn" target="_blank" /> </head>
title: Set the page title
meta: Set page meta information Contains nothing. The attributes of the <meta> tag define the name/value pairs associated with the document.
The http-equiv attribute in the <meta> tag is used to set an http title field, but the determined value is determined by the content attribute. The name attribute is used to set the form in which meta information appears, and the content attribute is used to set the content in which meta information appears.
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="expires" content="28 Feb 2017"> <meta http-equiv="refresh" content="5;url=http://www.cufe.edu.cn"> <meta name="author" content="Li Xuefeng"> <meta name="revised" content="You, 20070128"> <meta name="generator" content="Dreamweaver 8.0en"> <meta name="description" content="HTML examples"> <meta name="keywords" content="HTML"> </head>
base: Set the page base URL
<head> <base href="http://www.cufe.edu.cn/" /> <base target="_blank" /> <title>base example</title> </head> <body> <a href="xxgk/xxjj/index.htm">News link-relative url</a><br /> <a href="http://www.cufe.edu.cn/xxgk/xxjj/index.htm">News link-absolute url</a> </body>
The content between <body> and </body> is the main content of the entire web page and is also the main area where we write web pages.
subtopic
text format
<hi>: i represents 1, 2, 3, 4, 5, and 6, which represent first-level to sixth-level titles respectively.
<p>: identifies paragraph text
<pre>: identifies predefined format text
<blockquote>: identifies the quoted text, and the text will be indented by default
<body> Here comes a long quotation: <blockquote> This is a long quotation. This is a long quotation. </blockquote> Note that the browser adds line breaks before and after the blockquote element and adds margins. </body>
Character format
<b>: The main content is displayed in bold
<i>: The main content is shown in italics
<del>: Add strikethrough to the main content
<em>: The main content is highlighted
<sup>: The main content is in superscript form
<sub>: The main content is in subscript form
<ruby>: Define ruby comments (Chinese phonetic symbols or characters), used with <rt> and <rp>