View video tutorial

ANDROID TUTORIAL

ANDROID TUTORIAL

This tutorial is for those who wants to learn HTML and to develop websites.

HTML is the building blocks for websites


HTML is the Hypertext Markup Language for web.

For building webpage, website or web applications, learning HTML is a must along with other technologies.

It is very easy for anyone to learn.

Browsers read HTML document to display web contents properly.

Learn HTML

How the browsers work with HTML


Every browser understands HTML language, because the programming is built-in to the browsers.

Developers write code in HTML to make webpage, or websites.

Browsers read HTML tags and contents within it and know what is the meaning and purpose of each HTML tag.

Finally browser renders the contents on the page, viewers see the web page.

See HTML example

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

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

<h1>My First Heading One</h1>
<h3>My First Heading Two</h3>
<p>My first paragraph.</p>

</body>
</html>
Try it Now »

Click on the "Try it Now" button to see how it works.


Sample Code

Copy each file contents and paste it to your project, run and see the final output when everything is correct.

Example

<!DOCTYPE html>
<html>
<head>
<style>
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
</style>
</head>
<body>

<h2>HTML Table</h2>

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Magazzini Alimentari Moctezuma</td>
    <td>Yoshi Chang</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Laughing Bacchus Futterkiste</td>
    <td>Giovanni Anders</td>    
    <td>Mexico</td>
  </tr>
  <tr>
    <td>Ernst  Trading</td>
    <td>Bennett Roland</td>
    <td>Austria</td>
  </tr>
  <tr>
    <td>Island Handel</td>
    <td>Mendel Helen</td>    
    <td>UK</td>
  </tr>
  <tr>
    <td>Centro comercial Riuniti</td>
    <td>Maria Rovelli</td>
    <td>Italy</td>      
  </tr>
  <tr>
    <td>Alfreds Winecellars </td>
    <td>Francisco Tannamuri</td>
    <td>Canada</td>
  </tr>
</table>

</body>
</html>
Try it Now »

Click on the "Try it Now" button to see how it works.