1. 程式人生 > >html筆記1

html筆記1

字體顏色 20px ack 位置 ria 段落 .com 小號 p標簽

打算學完html,css,javascript,php,mysql在去學漏洞類型

html筆記:

*<h>標簽用於輸出標題</h>

h標簽分為:

<h1>我是h1</h1>

<h2>我是h2</h2>

<h3>我是h3</h3>

<h4>我是h4</h4>

<h5>我是h5</h5>

p標簽是段落:
<p>我是段落</p>

a標簽是鏈接:

<a href="http://www.w3school.com">w3school</a>

文本背景使用方法:

<html>

<body style="background-color:blue">

<h1 style="background-color:yellow">富士山下</h1>

</body>

</html>

居中使用方法:
<html>

<body>

<h1 style="text-align:center">what</h1>

<p>上面是居中哦</p>

</body>

</html>

換行與下分割線與定義字體與定義顏色與定義字體尺度使用:font-amily定義字體,font-size定義字體大小,text-align定義字體位置;color定義字體顏色;background-color定義文本背景

<html>

<body style="background-color:red">

<h1 style="align:center">分割與換行</h1>

<p style="font-family:arial;font-size:20px;color:blue">我是誰</p>

</body>

</html>

<b>定義粗體文字

<big>定義大號字

<em>定義著重文字

<i>定義斜體字

<small>定義小號字

<q>引用符

<br />換行符

<hr />水平線

html筆記1