Tutorial HTML <title>
HTML title - Belajar html
<title>
. Element <title>
mempunyai definisi sebagai judul document.Dalam penerapannya element title ini wajib diletakkan dalam rentang
<head>...</head>
dan hanya diperbolehkan hanya ada satu saja persatu documentTag 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 | |||||
---|---|---|---|---|---|
Element | Chrome | Safari | Firefox | Opera | IE / Edge |
<title> | Ya | Ya | Ya | Ya | Ya |
Default CSS :
Browser yang support dengan element
<title>
, mempunyai nilai default :title { display: none; }