Thursday 10 November 2016

Introduction To HTML(1)

What do you know about HTML, do you even know what HTML means and what its used for?.

 HTML is the standard way of creating webpages. i.e all web pages are created by the use of HTML.



 HTML stands for Hyper Text Markup Language.
HTML defines webpages by the use of markup.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages

HTML elements are represented by tags
HTML tags label pieces of content such as "heading", "paragraph", and so on
Browsers do not display HTML, but use them to render the content of the page.

This is an example of an HTML >>>

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

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

</body>
</html

HTML take time to learn you can learn by downloading the w3school HTML app on your store. We will write further on HTML so stay tuned and we also teach HTML.

No comments:

Post a Comment