W3cschool programming practical learning HTML5 & CSS combat Introduction ""

Last week introductory interest to want to learn about basic HTML. (Although it may not matter much and their own jobs, but it never hurts to know more about.) I am learning programming in HTML5 & CSS practical learning courses on W3cshool, because the usually busy, I can only draw half an hour every night to do problems, this weekend also coincides with graduate-site examination to confirm, therefore, currently only written part of the front. Follow-up will continue to update.

html simple example analysis

<!DOCTYPE html> 
<html> 
<body> 
<H1> I was the first title </ h1> 
<P> I am the first paragraph. </ P>
</body> 
</html>

We look at the code example, we can clearly found mostly HTML <> as a small cell, each cell has a flag at the beginning and end flags. DOCTYPE is expressed as the document type

It is worth mentioning that the <body> </ body> tag indicating that the page between a body portion, i.e., the visible portion of the page <h1> </ h1> title, <p> </ p> the paragraph. In addition to the body portion, and the header information <head> </ head>, the summary information recording document. This way tex and compilation of similar, latx edited into the preamble and the text area, if time permits, I will update some of the latter's own experience when using latex.

Because I pass through the curriculum has not been completed, it is expected to pass through the next week to update the information.

 

Guess you like

Origin www.cnblogs.com/ctgu-huamei/p/11829579.html