HTML tag html
HTML tag html je povinnou součástí každého HTML dokumentu. Ohraničuje celý dokument a říká prohlížeči, že má očekávat mezi těmito značkami html informace.
Atributy
Seznam nejpoužívanějších atributů pro HTML tag html:
Atribut |
Popis |
Hodnoty |
xmlns |
Definuje jmenný prostor při použití XHTML |
http://www.w3.org/1999/xhtml |
Ukázka
<html>
<head>
<title>HTML tag head</title>
<meta http-equiv="Content-Language" content="cs">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="ROBOTS" content="index, follow">
<meta name="description" content="Informace o HTML tagu head.">
<meta name="keywords" content="HTML tag head, HTML head, head HTML tag, head">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
..zde se píše to co se má zobrazit..
</body>
</html>
|