On the third lesson of Infocomm Studies, I learnt about HTML. Basically, HTML is a command box to tell the internet on what to do. Even pages like this decent blog is equipped with this. To view it, just go to page, click 'view source' then wait for it to start up.
Now to explain it in more detail. HTML stands for "Hyper Text Markup Language". It makes use of the program "notepad" under any computer's accessories. HTML is easy to learn. It is made up of a few commands as a skeleton. Here...(everything is in < and >)
html
head
title
/title
/head
body
/body
/html
This is quite easy to understand. The HTML always starts with a command which is html and ends with to show that the content between them is HTML. Why the slash? This is because slash in a command points to an end of a command. So, /html stands for the end of the HTML. Next comes the head. This contains the webpage infomation at the top of the page. title contains the title of the page found at the top of the page.
body contains the main pages and texts.
Next for miscellaneous things. 'p' stands for paragraph.'img src= (webpage)' is to insert a picture.'alt' is alternative text should the picture not be shown due to software compatibility. 'border' means the border thickness of the picture. 'height=(no.)' is the height of the picture while 'width' is the width of the picture. 'br' is page break. 'hr' stands for a horizontal line. 'h1' stands for the biggest font size while 'h6' is the smallest. 'a href= (webpage)' is to give a page link. 'a' comes together with 'a href' to show a text with a link. 'em' stands for emphasised words, 'b' is a bold word while 'u' is a n underlined word. Well, this concludes the basic HTML. For more advanced settings go to: http://www.w3schools.com/html/default.asp.
Usually, HTML comes with CSS, which I will learn in the following.Till then...!
Subscribe to:
Post Comments (Atom)

No comments:
Post a Comment