HTML

HTML (Hypertext Markup Language) is the standard markup language used to create and design web pages. 

Basic Example of html page given below

HTML Page Basic Structure:   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Title come here</title>
</head>
<body>
    <!-- Page content come here-->
</body>
</html>

Some Basic Tags Used in HTML page

1.Headings:

<h1>Heading 1 come here</h1>
<h2>Heading 2 come here</h2>
<!-- ... -->
<h6>Heading 6 come here</h6>

 

2.Paragraphs:

<p>Paragraph Text come here</p>

 

3.Links:

<a href="https://tutorialsonweb.com/" target="_blank">Visit Tutorialsonweb Website</a>

 

4.Images:

<img src="tutorialsonweb_logo.jpg" alt="Image Logo">

 

5.Lists:

Ordered List:

<ol>
    <li>Item 1 here</li>
    <li>Item 2 here</li>
    <li>Item 3 here</li>
</ol>

 

Unordered List:

<ul>
    <li>Item A here</li>
    <li>Item B here</li>
    <li>Item C here</li>
</ul>

 

6.Tables:

<table>
    <thead>
        <tr>
            <th>Heading 1</th>
            <th>Heading 2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Mahendra</td>
            <td>Rahul</td>
        </tr>
        <tr>
            <td>Mohan</td>
            <td>Sohan</td>
        </tr>
    </tbody>
</table>

 

7.Forms:

<form action="" method="POIST">
    <label for="username">Username:</label>
    <input type="text" id="username" name="username" required>
    <label for="password">Password:</label>
    <input type="password" id="password" name="password" required>
    <input type="submit" value="Submit">
</form>

 

8.Divisions (Divs):

<div>
    <!-- Tutorialsonweb Content come  here -->
</div>

9.Comments:

<!-- This is a comment section-->