HTML optgroup Tag


Example 
<!DOCTYPE html>
<html>
<body>

<select>
  <optgroup label="Computers">
     <option value="Desktop">Desktop</option>
    <option value="Laptop">Laptop</option>
    <option value="Tab">Tab</option>
  </optgroup>
  <optgroup label="Phone">
    <option value="Nokia">Nokia</option>
    <option value="Sony">Sony</option>
    <option value="LG">LG</option>
  </optgroup>
  <optgroup label="Electrical">
    <option value="LED TV">LED TV</option>
    <option value="DVD">DVD</option>
    <option value="Home Theater"> Home Theater </option>
  </optgroup>

</select>

</body>
</html>
Preview

Smart Phone talking Cat for your PC

Do you want to smart phone cat
 ඔයාලගේ පරිගකයටත් ස්මාර්ට් දුරකතන වල තියෙනවා වගේ කතා කරන පූසා දාගන්න ඕනද එහෙනම් මෙන්න ලින්ක් එක. ඩවුන්ලෝඩ් කරගෙන බලන්න Download

Derana Enhlish - Sinhala Dictionary

Derana Enhlish - Sinhala Dictionary  Free Download

 ඉතාමත් උසස් ඩික්ෂනරියක් වන දෙරන ඩික්ෂනරිය ඔබෙගේ පරිගනකයටත් දාගන්න කැමතිද මෙන්න ලින්ක් ඒක
Download

HTML Font Tag

Example

<html>
<body>
<p><font size="5" color="red">Online IT Academy </font></p>
<p><font size="30" color="blue"> Online IT Academy </font></p>
<p><font face=" Algerian " color="Black"> Online IT Academy</font></p>
</body>
</html>
Preview 

Online IT Academy

Online IT Academy

Online IT Academy

HTML Address Tag

Example:

<!DOCTYPE html>
<html>
<body>

<address>
Mail to <a href="mailto:it.training12@gmail.com">Ravindu Kumara</a>.<br>
www.sl-it-help.blogspot.com<br>
Eplitiya<br>
Sri Lanka
</address>

</body>
</html>
Preview : 

Mail to Ravindu Kumara.
www.sl-it-help.blogspot.com
Eplitiya
Sri Lanka

HTML Images - Set Height and Width

Example1

<img src="img url" width="400" height="132">
Preview 1 

Example2
<img src="img url" width="400" height="400">
Preview 2

HTML iframe Tag

Example
<html>
<body>

<iframe src="http://sl-it-help.blogspot.com/">
  <p>Your browser does not support iframes.</p>
</iframe>

</body>
</html>
 Preview


HTML Button Tags

 Example
<html>
<body>

<button type="button" onclick="alert('Thank You')">Like</button>

</body>
</html>

Preview

HTML Link

HTML CODE
<a href="Target url">Link text</a>
Example
<a href="http://sl-it-help.blogspot.com">Visit Online IT Academy</a>

Preview  

Visit Online IT Academy

TABLE WITH CAPTION


Example 
<table border="1">
  <caption>Exam Result </caption>
  <tr>
    <th>Subject</th>
    <th>Marks</th>
  </tr>
  <tr>
    <td>English</td>
    <td>80</td>
  </tr>
  <tr>
    <td>Moths </td>
    <td>60</td>
  </tr>
  <tr>
    <td>Art </td>
    <td>50</td>
  </tr>
</table>

Preview
Exam Result
Subject Marks
English 80
Moths 60
Art 50