Introduction to HTML

Practice Program 1: My First HTML Page

Learn the basic structure of an HTML document and display simple content on a webpage.

				
					<!DOCTYPE html>
<html>
<head>
    <title>My First Web Page</title>
</head>
<body>

    <h1>Welcome to HTML</h1>
    <p>This is my first HTML web page.</p>

</body>
</html>

				
			

Practice Program 2: Student Introduction Page

Create a webpage containing student information using headings and paragraphs.

				
					<!DOCTYPE html>
<html>
<head>
    <title>Student Introduction</title>
</head>
<body>

    <h1>Student Profile</h1>

    <h2>Name:</h2>
    <p>Rahul Kumar</p>

    <h2>Course:</h2>
    <p>Web Development</p>

    <h2>Hobbies:</h2>
    <p>Reading books, Coding, Playing Cricket</p>

</body>
</html>

				
			

Practice Program 3: HTML History Information Page

Create an informational webpage about HTML history.

				
					<!DOCTYPE html>
<html>
<head>
    <title>History of HTML</title>
</head>
<body>

    <h1>History of HTML</h1>

    <p>
        HTML stands for HyperText Markup Language.
        It was developed by Tim Berners-Lee in 1991.
    </p>

    <p>
        HTML is used to create webpages and web applications.
    </p>

    <p>
        HTML5 is the latest version of HTML.
    </p>

</body>
</html>

				
			

Practice Program 4: Software Tools Information Page

Display commonly used HTML development tools on a webpage.

				
					<!DOCTYPE html>
<html>
<head>
    <title>HTML Tools</title>
</head>
<body>

    <h1>Tools for Writing HTML</h1>

    <p>Some popular tools used for HTML coding are:</p>

    <h2>1. Visual Studio Code</h2>
    <p>A popular source-code editor developed by Microsoft.</p>

    <h2>2. Notepad</h2>
    <p>A simple text editor available in Windows.</p>

    <h2>3. Sublime Text</h2>
    <p>A lightweight and fast code editor.</p>

</body>
</html>

				
			

Practice Program 5: Personal Portfolio Homepage

Create a simple personal homepage using basic HTML tags.

				
					<!DOCTYPE html>
<html>
<head>
    <title>My Portfolio</title>
</head>
<body>

    <h1>Boby Kumar</h1>

    <p>
        Welcome to my personal portfolio webpage.
    </p>

    <h2>About Me</h2>
    <p>
        I am learning Web Development and HTML.
    </p>

    <h2>Skills</h2>
    <p>
        HTML, CSS, JavaScript
    </p>

    <h2>Goal</h2>
    <p>
        To become a professional web developer.
    </p>

</body>
</html>