self_example/java_web/HTML/html/01-基础标签.html

57 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--html 标识-->
<!DOCTYPE html>
<html lang="en">
<head>
<!--页面的字符集 -->
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>我是标题h1</h1>
<h2>我是标题h1</h2>
<h3>我是标题h1</h3>
<h4>我是标题h1</h4>
<h5>我是标题h1</h5>
<h6>我是标题h1</h6>
<!--水平分隔符-->
<hr>
<!--
html表示颜色
1.英文单词red,pink,blue
2.rgb(值1值2值3) 值得取值范围0~255 rgb(255,0,0)
3.#值1值2值3 值得范围00~FF
-->
<font face="楷体" size="5" color="#ffc0cb">传智教育</font>
<hr>
在 W3School你可以找到你所需要的所有的网站建设教程。<br>
从基础的 HTML 到 CSS乃至进阶的 XML、SQL、JS、PHP 和 ASP.NET。
<hr>
<p>
在 W3School你可以找到你所需要的所有的网站建设教程。
</p>
<p>
从基础的 HTML 到 CSS乃至进阶的 XML、SQL、JS、PHP 和 ASP.NET。
</p>
<hr>
W3School<br>
<b>W3School</b><br>
<i>W3School</i><br>
<u>W3School</u><br>
<hr>
<center>
<b>W3School</b>
</center>
</body>
</html>