MindMap Gallery HTML
HTML is a simple markup language used to create hypertext documents. Hypertext files written in HTML are called HTML files, also called Web files. HTML is the basic technology of web development.
Edited at 2022-04-21 09:54:36This is a mind map about bacteria, and its main contents include: overview, morphology, types, structure, reproduction, distribution, application, and expansion. The summary is comprehensive and meticulous, suitable as review materials.
This is a mind map about plant asexual reproduction, and its main contents include: concept, spore reproduction, vegetative reproduction, tissue culture, and buds. The summary is comprehensive and meticulous, suitable as review materials.
This is a mind map about the reproductive development of animals, and its main contents include: insects, frogs, birds, sexual reproduction, and asexual reproduction. The summary is comprehensive and meticulous, suitable as review materials.
This is a mind map about bacteria, and its main contents include: overview, morphology, types, structure, reproduction, distribution, application, and expansion. The summary is comprehensive and meticulous, suitable as review materials.
This is a mind map about plant asexual reproduction, and its main contents include: concept, spore reproduction, vegetative reproduction, tissue culture, and buds. The summary is comprehensive and meticulous, suitable as review materials.
This is a mind map about the reproductive development of animals, and its main contents include: insects, frogs, birds, sexual reproduction, and asexual reproduction. The summary is comprehensive and meticulous, suitable as review materials.
HTML basic version
HTML basic tags
html tag
The beginning and end of the entire web page
head tag
internal tag of head
<title> defines the title of the website
meta defines the basic information of the website (providing search assistance)
style defines css style
link links external css files or script files
script defines scripting language
base defines the base positioning of all links on the page
body tag
Paragraph and text labels
<h1>~<h6> header title
<p> paragraph paragraph
<br> break newline
<hr> horizontal rule horizontal line
<div> division division (block element)
<span> span area (inline element)
text formatting tag
<strong> strong (strengthened) bold
<em>emphasis italic
<cite> cite italic
<sup> superscripted superscript
<sub> subscripted (subscript) subscript
list
ol ordered list ordered list
ordered list type
1
a
A
i
I
unorderd list unordered list
unordered list type
disc solid circle
circle hollow circle
square solid square
subtopic
list term list item
dl definition list definition list
grammar:
《dl》 "dt" defines noun "/dt" "dd" definition description "/dd" 《/dl》
caption table caption of image
thead table head
tbody table body table body
tfoot table foot
th table header table header cell
td table body cell
subtopic
sheet
table semantic memory
table table
tr table row row
dt table datacell cell
Table structure tag
head table head table head
tbody table body table body
tfoot table foot table foot
th table header table header cell
The complete structure of the table
title caption
header th
watch body tb
table foot tf
subtopic
Merge rows and merge columns
grammar: <td rowspan="Number of rows to span">
grammar: <td colspan="Number of columns to span">
image
img self-closing tag
Attributes
src file address of the image
alt text that cannot be displayed in the image
title description of the image
Hyperlink
The syntax is as follows: <a href="Link address" target="How to open the target window">
target attribute
object attribute value description
_self Default mode, which is to open the link in the current window
_blank opens the link in a new blank window
_top opens the link in the top frame
_parent opens the link in the previous layer of the current frame
According to different link objects, it is divided into
1) External links
(2) Internal links: ① Internal page links; ② Anchor links;
form
<input>
subtopic
<input type="form type"/>
subtopic
<input type="text" value="Default text" size="Text box length" maxlength="Maximum number of input characters"/>
<textarea> (multiline text box)
grammar:
<textarea rows="Number of rows" cols="Number of columns">Multiple lines of text box content</textarea>
<select> and <option>
<select multiple="mutiple" size="Number of visible list items">
<option value="option value" selected="selected">Content displayed by option</option>
…
<option value="option value">The content displayed by the option</option>
</select>