HTML tags - Getting Started

Recently I began to learn the front of the school to share their little things

<! DOCTYPE HTML> 
<-! ,,, identifies HTML is used to tell the browser that this is an HTML document -> 
<HTML> 
	<head lang = "zh"> 
		<-! The head of the inside stuff on the page which is not displayed -> 
		<meta charset = "UTF-8" /> 
		<- meta:! metacharacters, set the encoding format, must appear at the top ,, commonly used in China two encoding formats ,, utf-8 and GB2312 -> 
		<title> tag is displayed in the page </ title> 
	</ head> 
	<body> 
		<h1 of> title tag has six brothers, h1 ~ h6, h1 maximum </ h1 of> 
		<P align = left = "left"> this is a paragraph tag, wherein the align attributes, left (left-justified) ,, center (center) ,, right (right justified) ,, justify (its extension, each line has the same length) </ P> 
		< p align = "right"> this is a space code, applied to the paragraph beginning, after all, we Chinese people have the habit of empty word ,,, but I would like to introduce you to <br /> 
		tags, you will find this is a new line of label </ p> 
		<pre> here, I want to tell you the difference between this label with p tag in the tag inside, how you knock, the browser is how you show up, such as our in p found inside the only knock box useless,But there is 
a useful oh </ pre> 
		<ul of the type = "Circle">  
			<li> ul li with supporting the use, of course, more ul brother ol can </ li>
			<li> ul unordered list, ol is an ordered list </ li> 
		</ ul> 
		<OL of the type = "1"> 
			<li> Look </ li> 
			<li> This </ li> 
			<li> is the difference between < / Li> 
			</ OL> 
			
			there is a horizontal tab here delimiter 
			<hr /> 
			there is a discharge video video tag 
			<video src = "" controls = ""> </ video> 
			
			Music tag <audio src = " "controls =" "> </ Audio> 
			<the p-> but remember, oh, video labels with music labels need to add controls property will be displayed </ p> 
			
			text input control textarea tags define multi-line text area can hold an unlimited number of text, where the text of the default font is a monospaced font, this label is best not to wrap, or controls appear 
			inside a space case 
			<the TextArea> </ the TextArea> 
			
	</ body> 
</ HTML>

  Above it are some common label, there are many labels not listed, if there is a need in the learning process, you can take a look tutorial .. Come

Guess you like

Origin www.cnblogs.com/xy-l/p/11116536.html