html的頭標籤
html的頭標籤的使用
* html兩部分組成 head和body
** 在head裡面的標籤就是頭標籤
** title標籤:表示在標籤上顯示的內容
** <meta>標籤:設定頁面的一些相關內容
- <meta name="keywords" content="畢姥爺,熊出沒,劉翔">//早期沒有競價排名會這樣做
<meta http-equiv="refresh" content="3;url=01-hello.html" /> //頁面的定時跳轉,3秒後跳轉
** base標籤:設定超連結的基本設定
- 可以統一設定超連結的開啟方式
<base target="_blank"/>
** link標籤:引入外部檔案
** 明天css,可以使用link標籤引入css檔案
<html>
<head>
<title>HTML示例</title>
<meta name="keywords" content="畢姥爺,熊出沒,劉翔" charset="UTF-8">
<!-- <meta http-equiv="refresh" content="3;url=01-hello.html" />-->
<base target="_blank" />
</head>
<body>
<h1>頭標籤</h1>
<a href="01-hello.html">超連結1</a>
<a href="01-hello.html">超連結2</a>
<a href="01-hello.html">超連結3</a>
</body>
</html>
相關文章
- HTML head 頭標籤HTML
- HTML標籤(基本標籤的使用)HTML
- html中常用的標籤-表格標籤HTML
- HTML <a> 標籤HTML
- HTML 標籤HTML
- HTML 標籤HTML
- html標籤HTML
- html的基本標籤HTML
- HTML 的常用標籤HTML
- html <a>標籤的妙用HTML
- HTML 標籤的使用HTML
- html中常用的標籤-表單標籤HTML
- html中常用的標籤-超連結標籤HTML
- HTML <var> 標籤HTML
- HTML <canvas> 標籤HTMLCanvas
- HTML <article> 標籤HTML
- HTML <section> 標籤HTML
- HTML <main> 標籤HTMLAI
- HTML <time> 標籤HTML
- html標籤整理HTML
- HTML <footer> 標籤HTML
- HTML <nav> 標籤HTML
- HTML <body>標籤HTML
- HTML <meta>標籤HTML
- html基本標籤HTML
- HTML <iframe>標籤HTML
- HTML <span>標籤HTML
- HTML 常用標籤HTML
- HTML常用標籤HTML
- HTML <div>標籤HTML
- html標籤使用HTML
- HTML標籤(1)HTML
- html列表標籤HTML
- HTML標籤(2)HTML
- HTML標籤(3)HTML
- html meta標籤HTML
- HTML DOCTYPE 標籤HTML
- html排版標籤HTML