sobota 8. augusta 2015

Simple HTML5 site

                                      TEXT IN HTML5

  Hallo, I'm here again. 
  For writing text in HTML5 you'll need to know these tags: <h1>: This tag can be written as <h2>, 
                                                                                                            <h3>, etc. These commands are                                                                                                                 for titles for text.
                                                                                                 <p>: This tag is used for simple text.                                                                                                                  Tags <bold> is for bold text and                                                                                                                 <italic> is for italic text style, but                                                                                                             you'll won't need them now.
                                                                                                 <title>: This tag makes name for site

REMEMBER always to start your algorithm with tag <!DOCTYPE html> which makes the site run properly. Also don't forget to write / when you want to end a tag (eg. <p>Text</p>). Copy the text bellow, or rewrite it to create your first site:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF=8">
    <title>This is some title</title>
  </head>
  <body>
    <h1>This is some text 1</h1>
    <p>This is some text 2<p>
  </body>
</html>

Don't forget to save your site with ending .html because if not, it won't work.

After doing this, your site should look like this:












For now it is all, good bye.

Žiadne komentáre:

Zverejnenie komentára