sobota 8. augusta 2015

Adding Picture to Your Site

                          Adding Picture to Your Site

  Hello, I'm back and I'm going to show you how to add a picture to your HTML5 site.

  For this, we will be working with a tag <img src="" alt="" style="width:"";  height:"">
  This tag does not need an ending tag. To correctly write the tag, read the instruction bellow:
<img src="name of the file" alt="text under you want to have the image" style="width: width of the image; height: height of the image">

  Now copy or rewrite this algorithm for image. Please make the changes in tags where I put Italic text.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF=8">
    <title>Image</title>
  </head>
  <body>
    <h1>This is a image</h1>
    <p>This is a table</p>
    <img src="table.jpg" alt="This is a table" style="width: 1000; height: 587;">
  </body>
</html>



If is is correct, your site should look like this:














So, this is all for now, good bye

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.

piatok 7. augusta 2015

What will you need for HTML5

               What do You Need To Program in HTML5

  You probably guess what do you need to program in HTML5. 
  Most basic thing you need for programming in HTML5, you will need basic knowledge with HTML5, CSS3 and JavaScript.
  Then you'll need good text editor. The most professional are Microsoft WebMatrix and Sublime Text. But best are Notepad (Windows), TextEdit (Mac) and Visual Studio Code (Windows, Mac and Linux). I use Visual Studio Code. You will also need a modern internet browser to check if your codes work.
  This is all for now. Have a good day.

My First Blog

  Hallo and welcome to my first blog.
  Probably when you came to my blog, you guessed what I will write about.
  I will make blogs with tutorials on HTML5 programing. Since you can do either games on HTML5, not only sites,  I will make tutorials on them too.
 I hope you will enjoy. Have a good day.