HTML stands for Hyper Text Markup Language
------------------------------------------
eg)
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
注:将正文变大不要用<h>,用<b>
------------------------------------------
Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading. <h6> defines the smallest heading.
The<br>tag is used when you want to end a line, but don't want to start a new paragraph. The<br>tag forces a line break wherever you place it.
<!-- This is a comment -->
----------------------------------------
<p>
To break<br>lines<br>in a<br>paragraph,<br>use the br tag.
</p>
显示:
To break
lines
in a
paragraph,
use the br tag.
----------------------------------------
------------------------------------------
eg)
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
注:将正文变大不要用<h>,用<b>
------------------------------------------
Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading. <h6> defines the smallest heading.
The<br>tag is used when you want to end a line, but don't want to start a new paragraph. The<br>tag forces a line break wherever you place it.
<!-- This is a comment -->
----------------------------------------
<p>
To break<br>lines<br>in a<br>paragraph,<br>use the br tag.
</p>
显示:
To break
lines
in a
paragraph,
use the br tag.
----------------------------------------