Home Course Advance Excel Ethical Hacking Anonphisher TBomb Virus-Builder Seeker Linux Basic Tools Download Links CiLocks Fun Commond Cyber Security Advance Excel CMD Commond Excel Shortcut Excel Formating Shortcut Keys MS-Office Free Activation Commond Windows Free Activation Commond Windows Shortcut keys
Tag Description Example
<html>Root element<html>...</html>
<head>Document head<head>...</head>
<title>Page title<title>My Page</title>
<body>Page content<body>...</body>
<h1> - <h6>Headings<h1>Heading</h1>
<p>Paragraph<p>Text</p>
Tag Description Example
<a>Hyperlink<a href="url">Link</a>
<img>Image<img src="img.jpg" alt="desc">
<ul>, <ol>, <li>Lists<ul><li>Item</li></ul>
<table>, <tr>, <td>, <th>Table elements<table><tr><td>Cell</td></tr></table>
<form>, <input>Form elements<form><input type="text"></form>
<div>Division (block)<div>Block</div>
<span>Inline container<span>Inline</span>
<script>JavaScript<script>alert('Hi')</script>
<style>Internal CSS<style>body {color:red;}</style>