Monday 24 November 2014

HyperText Markup Language

Bismillahirrahmanirrahim...

Assalamualaikum and good morning readers! 

It has been a tough week for us as we were having tonnes of midterm examinations. Luckily, we are capable to find a time to teach you another thing that we have learnt. 

So today's topic is about HTML, or so-called Hypertext Markup Language. 

Here we go!

HTML or HyperText Markup Language is the standard markup language used to create web pages. (wikipedia)
So,  HTMLis a standard markup language that is to create web pages. A web browser can read HTML files and convert it into visible and audible web pages. The browser does not display the HTML language, but uses them to interpret the data of the page.

These are the tags that we have learnt in previous class. Each tags is written in angle brackets (< >).

TAGS
FUNCTIONS
<h1> until <h6>
Defines the headings
<body>
Defines the document’s body
<a>
Defines the hyperlink
<html>
Defines the root of an HTML document
<li>
Defines a  list item
<ol>
Defines an ordered list
<p>
Defines a paragraph
<table>
Defines a table
<tr>
Defines a row in a table
<ul>
Defines an unordered list

For further explanations about the tags, you can peek here.

For an extra clarification, we will include an example of full HTML tags.

<html>
<body>

<h4>Without cellpadding:</h4>

<table border="1">
<tr>
 <td>First</td>
 <td>Row</td>
</tr>
<tr>
 <td>Second</td>
 <td>Row</td>
</tr>
</table>

<h4>With cellpadding:</h4>

<table border="1"
cellpadding="10">
<tr>
 <td>First</td>
 <td>Row</td>
</tr>
<tr>
 <td>Second</td>
 <td>Row</td>
</tr>
</table>

</body>

</html>

Thus, the outcome of this tags is :

Table

We think we have completely brief about HTML. We hope our post today would help you to make a web page. Thanks for spending your time here. XOXO



No comments:

Post a Comment