国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML basics

HTML Basics - 4 Examples

Don't worry about the examples you haven't learned in this chapter,

You will learn them in the following chapters.

We will first introduce the basic content to everyone, and then show it through an example

HTML title

HTML title (Heading) is passed <h1> - <h6> tags.

HTML paragraph

HTML paragraph is defined by the tag <p>.

HTML Link

HTML link is defined by the tag <a>.

HTML Image

HTML images are defined through the tag <img>.

Let’s write an example below, using all the above knowledge points, so that everyone can have a systematic understanding and coherent learning

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h1>歡迎學(xué)習(xí)HTML</h1>
<h2>歡迎學(xué)習(xí)HTML</h2>
<h3>歡迎學(xué)習(xí)HTML</h3>
<p>這里是第一段內(nèi)容</p>
<p>這是第二段內(nèi)容</p>
<a href="http://php.cn/">點(diǎn)擊學(xué)習(xí)</a><br/>
<img src="/upload/course/000/000/007/57fb2bca70c24537.jpg">
</body>
</html>

QQ圖片20161010145740.png

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <h1>歡迎學(xué)習(xí)HTML</h1> <h2>歡迎學(xué)習(xí)HTML</h2> <h3>歡迎學(xué)習(xí)HTML</h3> <p>這里是第一段內(nèi)容</p> <p>這是第二段內(nèi)容</p> <a href="http://php.cn/">點(diǎn)擊學(xué)習(xí)</a><br/> <img src="https://img.php.cn/upload/course/000/000/007/57fb2bca70c24537.jpg"> </body> </html>
submitReset Code