EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses
  • :

🌐 What is HTML?

HTML (HyperText Markup Language) is the standard language used to create and structure content on the web. It tells the browser how to display text, images, links, and other elements.

 

🧱 Basic Structure of an HTML Document:

html

Copy

Edit

<!DOCTYPE html>

<html>

<head>

<title>My First HTML Page</title>

</head>

<body>

<h1>Welcome to My Website!</h1>

<p>This is a paragraph of text.</p>

</body>

</html>

🧩 Key Elements in HTML:

<!DOCTYPE html> – Declares the document type and version of HTML.

 

<html> – Root element of an HTML page.

 

<head> – Contains meta information (like title, links to stylesheets, etc.).

 

<title> – Sets the page title (shown in the browser tab).

 

<body> – Contains the content shown on the page.

 

<h1> to <h6> – Headings, from largest (<h1>) to smallest (<h6>).

 

<p> – Paragraph text.

 

<a href=”URL”> – Hyperlink.

 

  1. <img src=”image.jpg” alt=”description”> – Image.

 

<ul>, <ol>, <li> – Unordered and ordered lists.

 

🎨 Example with More Elements:

What is Html (Hyper Text Markup language)

Leave a Reply

Your email address will not be published. Required fields are marked *

EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Popular Courses

[Course Image]

Introduction to Programming

Learn the fundamentals of programming with Python in this beginner-friendly course.

12 Hours Beginner
[Course Image]

Data Science Essentials

Master the basics of data analysis, visualization, and machine learning.

20 Hours Intermediate
[Course Image]

Web Development Bootcamp

Build modern websites with HTML, CSS, JavaScript and popular frameworks.

30 Hours Beginner
[Course Image]

Digital Marketing Fundamentals

Learn SEO, social media marketing, email campaigns and analytics.

15 Hours Beginner
Educational Website Footer