亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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