HTML : (Hyper Text Markup Language) Hypertext Markup Language
HTML Basic notation:
Control information on the Web page;--Utf-8: A decoding method for domestic use
<title> Page Title </title>
<body>
What the page displays
</body>
Properties of the body:
BgColor page background color
Text text color
TopMargin on page margin
LeftMargin left page margin
RightMargin Right page margin
Bottomargin Next page margin
Background background Wallpaper
1.1. General label
1.1.1
, Format control label
<font color= "" face= "" size= "" ></font> control font; color= "# #FF0000"; face, font, size, font.
<b></b> Font Bold
<i></i> Tilt
<u></u> Underline
<strong></strong> font Bold (emphasis, tone reinforcement)
<em></em> font Tilt (emphasis, tone enhancement)
<center></center> Center
<br> or <br/> equivalent to carriage return
indicates that spaces can also be pressed in the design page ctrl+shift+space
1.1.2
, Content container label
<p></p> paragraph labels (blank lines between paragraphs)
<div></div> Layer Label (default line)
<span></span> Layer Labels (how much space is used by default)
<ol type= "1" >--sequential list with a serial number of ..., you can change the ordinal form in quotation marks
<li> content </li>
<li> content </li>
</ol>--The above "ol" is changed to "UL" is an unordered list
“.. /"indicates the parent directory
"./" indicates the current directory
Relative path: Finds from the current page.
Absolute path: Search from the root of the site. "/", which represents the root of the site.
1.2. Common label
Hyperlink label
<a href= "hyperlink address" target= "_blank" > Hyperlink text </a>--href (hyperlink reference); _blank is open in a new window.
The first step: do the anchor point label. <a name= "" ></a>
Step Two: do anchor links. <a href= "The value of the name of the target link" ></a>
Picture label
--high heel width set one, the display picture is scaled proportionally. ALT displays text when a picture cannot be loaded, and also helps search engines.
Web Authoring (HTML) Primer Basics and examples