The Foundation of Every Website
HTML (HyperText Markup Language) என்பது Web Pages உருவாக்க பயன்படும் Markup Language ஆகும்.
✔ Create Web Pages
✔ Structure Content
✔ Display Text & Images
✔ Create Forms
✔ Build Websites
<!DOCTYPE html> <html> <head> <title>My Website</title> </head> <body> Hello World </body> </html>
<h1>Heading</h1> <p>Paragraph</p> <a>Link</a> <img> <table> <form>
<img src="image.jpg">
<a href="page.html"> Click Here </a>
<ul> <li>HTML</li> <li>CSS</li> </ul>
<table> <tr> <td>Data</td> </tr> </table>
<form> <input type="text"> </form>
✔ Websites
✔ Blogs
✔ Portals
✔ E-Commerce Sites
✔ Web Applications
What is HTML?
What is DOCTYPE?
What is a Tag?
Difference between HTML and CSS?
What is a Form?
What is a Hyperlink?
What is Semantic HTML?
What is an Attribute?
HTML என்பது Web Development-ன் அடித்தளம் ஆகும்.
HTML இல்லாமல் எந்த Website-யும் உருவாக்க முடியாது.