Welcome to chapter 1, Introduction to HTML. You can call me Luo, or si Shao or Si Shu. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah…

<html>// HTML is the skeleton of a web page<head>// Set the code to utF-8<meta charset="utf-8">
         <title>Title is the title of the page</title>
     </head>//body The body of the web page<body>// Web layout: streaming layout. Simply put, it's a top-to-bottom, left-to-right layout we call streaming. If one line doesn't fit, we start another. // Our labels have single label and double label points, such as single dog you, is single label, Tang SAN and small dance is double label. // The single dog has the following:</br>,</hr>. / / couples: the HTML, head, body, title, div, span, p, h1 ~ h6, a, b, I, u, s. // Our tag is also divided into block elements and inline elements. // Block elements tend to be bossy and like to occupy a single line of the parent container. Div, h1 ~ h6, p, hr. // The line element is more sociable, can have more children together. A, span, b, I, u, s.<h1>I'm the headline of the page</h1>
     <h2>I am the middle child</h2>
     <h3>I am old</h3>
     <h4>I am old four</h4>
     <h5>I am a young man</h5>
     <h6>I am old six</h6>
     <div>There is no seven, I am not seven fairies, I am a piece of element, you can call me box, I like a single line</div>
     <span>I'm not a secret burger. I'm an element. I'm a box.</span>
     <p>I am paragraph, like a person alone, a single line is also my characteristic, I am also a block element.</p>
     &nbsp;// Hello, I am a small space, I NB bar! The other labels had to make room for me, so they called me SP, and they gave me a semicolon because I was funny.<a herf="http://baidu.com" title="Hyperlink">baidu</a>Href ="url ", # is the empty link. Target is the opening method, _self (default, overwrite the current page), _blank(new window opens) //title<b>My name is Big, people call me Big, because I can be big, big, live I can't, live shit I can.</b>
     <i>My name is Italic, AND I'm like a slanting umbrella, but you have to remember that good triumphs over evil! I am not evil evil, is the oblique oblique.</i>
     <u>You and I, like the underline, leave a trace, representing the focus of learning, remember me oh.</u>
     <s>Life always has unknown past, delete, start again! Delete the line<s/>
     </body>
</html>
Copy the code