html標(biāo)題標(biāo)簽一般指兩種:
1.是指title標(biāo)簽 (title標(biāo)簽在head標(biāo)簽里面,head標(biāo)簽是告訴瀏覽器和搜索引擎,頁面主體是干什么的)
2.是指H標(biāo)簽(H標(biāo)簽是body標(biāo)簽里面,body標(biāo)簽是給用戶看的,是直接顯示到瀏覽器中,常用的是h1,h2,h3等; )
- <!DOCTYPE html>
 - <html>
 - <head>
 - <meta charset="utf-8">
 - <title>通高科技</title>
 - <style>
 - h1{
 - display: block;
 - background-color: antiquewhite;
 - height: 200px;
 - width: 220px;
 - float: left;
 - margin-left: 5px;
 - }
 - .p1{
 - color: green;
 - font-size: 18px;
 - }
 - .p2{
 - text-align: center;
 - }
 - .p3{
 - line-height: 200px;
 - }
 - </style>
 - </head>
 - <body>
 - <h1 class="p1">標(biāo)題默認(rèn)未距中</h1>
 - <h1 class="p1 p2">標(biāo)題設(shè)置水平距中</h1>
 - <h1 class="p1 p2 p3">標(biāo)題設(shè)置垂直水平都距中</h1>
 - </body>
 - </html>
 

- <!DOCTYPE html>
 - <html>
 - <head>
 - <meta charset="utf-8">
 - <title>通高科技</title>
 - <style>
 - .p1{
 - color: green;
 - }
 - .p2{
 - font-size: 10px;
 - }
 - </style>
 - </head>
 - <body>
 - <h1 class="p1">未設(shè)置標(biāo)題字體大小</h1>
 - <h1 class="p1 p2">設(shè)置標(biāo)題字體20px</h1>
 - </body>
 - </html>
 
												
- <!DOCTYPE html>
 - <html>
 - <head>
 - <meta charset="utf-8">
 - <title>通高科技</title>
 - <style>
 - .p1{
 - color: green;
 - }
 - </style>
 - </head>
 - <body>
 - <h1 class="p1">標(biāo)題顏色</h1>
 - </body>
 - </html>