HTML中的<html>標記用於定義HTML和XHTML文檔的根。 <html>標簽告訴瀏覽器它是一個HTML文檔。它是HTML文檔中出現的所有內容的第二個外部容器,後跟<!DOCTYPE>標記。 <html>標記需要一個開始和結束標記。
用法:
<html> HTML Contents... </html>
屬性:
attribute name: xmlns value: http://www.w3.org/1999/xhtml description: It is used to define the namespace attributes.
以下示例說明了HTML中的<html>元素:
範例1:
<!DOCTYPE html>
<html>
<head>
<title>html tag</title>
<style>
h1 {
color:green;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2><html> Tag</h2>
</body>
</html>
輸出:
範例2:使用<html>標記內的xmlns屬性。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>html Tag</title>
<style>
h1 {
color:green;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2><html> Tag</h2>
</body>
</html>
輸出:
支持的瀏覽器:<html>標簽支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML <section>用法及代碼示例
- HTML Style用法及代碼示例
- HTML <marquee>用法及代碼示例
- HTML <noframes>用法及代碼示例
- HTML <picture>用法及代碼示例
- HTML <font>用法及代碼示例
- HTML <hgroup>用法及代碼示例
- HTML <q>用法及代碼示例
- HTML Object用法及代碼示例
- HTML Phrase用法及代碼示例
- HTML <hr>用法及代碼示例
- HTML <nav>用法及代碼示例
- HTML <Meta>用法及代碼示例
- HTML <optgroup>用法及代碼示例
- HTML <frame>用法及代碼示例
- HTML <main>用法及代碼示例
- HTML <dfn>用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | <html> Tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。