Zero Basic Introduction to Learning Web Development (HTML5 & CSS3) 001

 

 

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <title>第一个程序</title>
 5         <style>
 6             body {
 7                 background-color:pink;
 8             }
 9         </style>
10     </head>
11     <body>
12         <h1>Hello world</h1>
13         <p>I love you</p>
14     </body>
15 </html>

 

<!DOCTYPE html>

Parse with HTML5

 

<html>

an HTML document

 

<head>

the title of the document

 

<title>

title

 

<body>

the content of the document

 

<h1>

title

 

<p>

paragraph

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324980927&siteId=291194637