tRikSonic

HTML title Tag

Terakhir diperbarui : 22 Mei 2018 - 10.59

Tutorial HTML <title>

HTML title - Belajar html <title>. Element <title> mempunyai definisi sebagai judul document.
html font
Dalam penerapannya element title ini wajib diletakkan dalam rentang <head>...</head> dan hanya diperbolehkan hanya ada satu saja persatu document
Tag pembuka dan penutup diwajibkan untuk element ini, Misal : <title>...</title>

Contoh HTML <title>

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Hello world</title>
</head>
<body>

<h1>Hello world!</h1>

</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Hello world</title>
</head>
<body>

<h1>Hello world!</h1>

</body>
</html>

Global Attributes:

Element <title> mencakup Global Attributes HTML.

Browser Support :

HTML
ElementChromeSafariFirefoxOperaIE / Edge
<title>YaYaYaYaYa

Default CSS :

Browser yang support dengan element <title>, mempunyai nilai default :
title {
    display: none;
}
X
Run
Klik tombol Run, untuk menampilkan hasil editing, atau menyegarkan editor.