MindMap Gallery html summary
Basic summary of knowledge points that are frequently used in daily HTML HTML basics HTML summary HTML
Edited at 2020-02-28 23:31:53El 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 summary
HTML basic document format
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Document title</title> </head> <body> Document ontology </body> </html>
Basic Tags
<body> <h1>The biggest title</h1> <h2>The second largest title </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Minimal title</h6> <p>This is a paragraph. </p> <br> (line feed) <hr> (horizontal line) <!-- This is a comment --> </body>
Links
<body> <!--Ordinary link: --> <a href="http://www.baidu.com/">Link text</a> <!--Image link: --> <a href="http://www.baidu.com/"><img src="URL" alt="Image link alt text"></a> <!--Email link: --> <a href="mailto:zyl_lfe@163.com">Send e-mail</a> <!--Bookmark:--> <a id="tips">Tips section</a> <a href="#tips">Skip to tips</a> </body>
Images
<body> <img src="URL" alt="replacement text" height="32" width="32"> </body>
Text formatting (Formatting)
<body> <b>Bold text</b> <!--If you want a piece of computer code to be displayed on a web page, then this code needs to be wrapped with a <code> tag, otherwise it will be run as the code of the web page. --> <code> sum = 0 for i in range(101): sum = i print(sum) </code> <em>Emphasis text</em> <i>italic text</i> <!--Preformatted text tags--> <pre> Dark, light yellow body, soft in nature, The traces of love are far away, but the fragrance remains. Why light green and dark red, He is the best among flowers. </pre> <small>Smaller text</small> <strong>Important text</strong> <!--<abbr title="Full name of abbreviation">Abbreviation</abbr>--> <abbr title="Hyper Text Markup Language">HTML</abbr> <!--Contact address label--> <address> Baidu address: <a href="https://www.baidu.com">Baidu entrance</a> </address> <!--Text display direction--> <p>The text in this paragraph is displayed from left to right. </p> <p><bdo dir="rtl">The text of this paragraph is displayed from right to left. </bdo></p> <!--Reference from another source--> <p>This is a regular paragraph</p> <blockquote cite="source address"> <p>This is a quoted paragraph</p><p>This is a quoted paragraph</p> </blockquote> <p>This is also a regular paragraph</p> <!--Delete text and inserted text--> <p>(This is an example used with delete and insert tags)</br>Original price<del>180</del>Now only <ins>80</ins></p> <!--Superscript text and subscript text--> <div> This tag is <sub>sub subscript text</sub> This tag is <sup>sup superscript text</sup> </div> <!--The default style of the div tag is on its own line, and its CSS style needs to be reassigned. For example, style settings such as div width and height, internal font size, and font color need to be implemented through CSS --> <style> div{ margin-top:10px}/* css comment: Set the top spacing to 10px for all divs */ .divcss5-1{font-size:16px}/* Set css font size to 16px */ .divcss5-2{color:#F00}/* Set the css font color to red */ .divcss5-3{ background:#000; color:#FFF}/* Set CSS background color to black and font color to white */ .divcss5-4{ border:1px solid #F00; height:60px}/* Set the css border and CSS height to 60px */ </style> <div class="divcss5-1">My font size is 16px</div> <div class="divcss5-2">My font color is red</div> <div class="divcss5-3">My background is black and the font is white</div> <div class="divcss5-4">Layout settings border and height</div> </body>
Tables
<body> <table border="10"> <tr> <th>Table title</th> <th>Table title</th> </tr> <tr> <td>Tabular data</td> <td>Tabular data</td> </tr> </table> </body>