HTML(Hype text Language, Hypertext Markup Language)
<HTML>--start Tag <Head>Web Control information<title> Page Title</title></Head><Body>
Page display content</Body></HTML>
double-label elements :
< Tag Name Property Name = Property Value Property name = attribute value > Content </Tag name >
As a content container
single-label elements :
< Tag Name Property name = attribute value > or < tag name/>
Mainly play a controlling role
Page type:
Static page:
If you want to modify, you need to modify the source code. There is no connection to the database, the content is written dead: HTML. htm
Dynamic page:
If you want to modify, you can do it through the background. Content is read from the database. aspx. jsp. php
Format Control Tags:
<font color= "Color" face= "font" size= "Font size" ></font>
<b></b> Bold Font
<i></i> Tilt
<u></u> Underline
<strong></strong> Bold Accent Tone
<em></em> Font Tilt accent tone
<center></center> Center
<br> or <br/> line break
Space
Content container Tags:
<div></div> Layer Labels
<span></span> Layer Labels (the default is how much space to occupy)
<ol></ol> ordered list
<ul></ul> unordered List
".. /"Parent Directory
"./" Current directory
"/" root directory
hyperlink: <a href= "link address" target= "_blank" ></a> _blank means open in new window
Image link :
Quick knowledge of HTML and general tags