_ python learning HTML fifth module

_ python learning HTML fifth module

 

 A create a html file

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>

</body>
</html>

 1.  Label Description

head   tag definition document for the head, which is a container for all the head elements used in the head section: <Base><Link><Meta><Script><style> , and the  <title> .
title     Defines the title of the document
body   define the main document. body element contains all the contents of the document (such as text, hyperlinks, images, tables and lists, and so on.)
HTML   <HTML> and </ html> tag defines the start and end points of the document, between which the head and the body of the document



<! DOCTYPE HTML > 
< HTML > 
< head > 
    < title > body tags commonly used tag </ title > 
</ head > 
< body > 
    < H2 > " & nbsp; Geese & nbsp; " </ H2 > 
    goose goose, < br > 
    song to Tiange. < Br > 
    white hair floating green, < br > 
    Anthurium dial Shiba. < Br > 
    & Copy;


body>
</html>

 

Description:  

  & nbsp a space
  <br> wrap 
  <h1> </ h1> < h1> - <h6> tags to define the title

  

 

 



 

 

Guess you like

Origin www.cnblogs.com/augustyang/p/11119144.html