Základná štruktúra HTML stránky

<

>

//index.html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading.</h1>
<p>My first paragraph.</p>

</body>
</html>

Vysvetlenie

  • <!DOCTYPE html> tag definuje, že tento dokument je typu HTML5
  • <html> tag je základný element HTML stránky. Určuje začiatok a koniec HTML stránky.
  • <head> tag obsahuje meta informácie o HTML stránke
  • <title> tag špecifikuje názov stránky
  • <body> tag definuje telo stránky
  • <h1> tag definuje najdôležitejší nadpis
  • <p> tag definuje paragraf

Príkazy (tagy) v HTML:

Párové

  • <p> </p>
  • <div> </div>
  • <b> </b>
  • <span> </span>
  • <i> </i>
  • <iframe> </iframe>
  • <a> </a>
  • <h1> </h1>
  • <pre> </pre>

Nepárové

  • <br>
  • <hr>
  • <img>
  • <meta>
  • <input>

Štruktúra stránky

<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>