HTML Basics

Learn the fundamentals of HTML

What is HTML?

HTML (HyperText Markup Language) is the standard markup language for creating web pages. It describes the structure of a web page.

Basic HTML Structure


<!DOCTYPE html>
<html>
<head>
    <title>Page Title</title>
</head>
<body>
    <h1>My First Heading</h1>
    <p>My first paragraph.</p>
</body>
</html>
        

HTML Elements

HTML elements are the building blocks of a web page. They are represented by tags, such as <h1>, <p>, and <a>.

Example: Links


<a href="https://kandyzone.com">Visit KandyZone.com</a>
        

HTML Attributes

Attributes provide additional information about HTML elements. For example, the src attribute specifies the source of an image.

Example: Image


<img src="image.jpg" alt="Description of image">
        

HTML Forms

Forms allow users to input data. Common form elements include <input>, <textarea>, and <button>.

Example: Form


<form action="/submit" method="POST">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name">
    <button type="submit">Submit</button>
</form>
        

Call for Live Sessions

Want to learn more? Call us at 078 777 0000 to arrange a live session with our experts!