Skip to content

Learn & Explore

Learn practical technology, programming, IT infrastructure, cybersecurity and real-world experiences.

  • Home
  • Learn
    • IT Fundamentals
      • What Is Information Technology?
      • History and Evolution of Computer Technology
      • Components of an Information Technology System
    • Java
      • Introduction to Java: What It Is & Why Learn It
    • Programming
    • Web Development
    • Networking
    • Cyber Security
    • Database
    • Roadmaps
      • Java Roadmap
  • Resources
    • Technology Pioneers
      • Charles Babbage
      • Ada Lovelace
      • Alan Turing
      • Grace Hopper
      • Tim Berners-Lee
      • Dennis Ritchie
      • Linus Torvalds
    • IT Degrees in Nepal
      • BSc CSIT(TU)
    • Universities
      • Tribhuvan University
      • Kathmandu University
      • Pokhara University
      • Purbanchal University
      • Mid-West University
      • Far Western University
      • Nepal Open University
    • Quotes
  • About
    • Contact
    • Privacy Policy
    • Terms and Conditions
  • Home
  • Web Development
  • What is HTML ?

What is HTML ?

Posted on December 7, 2022December 29, 2022 By macharaja No Comments on What is HTML ?
HTML, Web Development

Hyper Text Markup Language (HTML) is a standard markup language for the creation of a web page and web applications.
It allows the creation and structure of sections, paragraphs, and links using HTML elements (the building blocks of a web page) such as tags and attributes.

HTML consists of a series of elements that are represented by tags. These tags are used to define the structure and content of a web page. For example, the <h1> tag is used to define a heading, and the <p> tag is used to define a paragraph.

HTML also uses attributes to provide additional information about an element. These are added to the opening tag of an element and are usually made up of a name and a value, separated by an equals sign.

Here are some basic concepts to understand when learning HTML:

  1. HTML elements: These are the building blocks of an HTML document and are represented by tags. For example, the <p> tag represents a paragraph element, and the <img> tag represents an image element.
  2. Attributes: These provide additional information about an element. They are added to the opening tag of an element and are usually made up of a name and a value, separated by an equals sign. For example, the src attribute is used to specify the source of an image, like this: <img src="image.jpg">.
  3. Headings: Headings are used to create headings and subheadings on a web page. They are represented by the <h1> to <h6> tags, with <h1> being the most important and <h6> being the least important.
  4. Paragraphs: Paragraphs are used to create blocks of text on a web page and are represented by the <p> tag.
  5. Links: Links, or hyperlinks, are used to connect web pages and are represented by the <a> (anchor) tag. The href attribute is used to specify the destination of the link.
  6. Lists: Lists are used to organize content on a web page and can be either ordered (numbered) or unordered (bulleted). Ordered lists are represented by the <ol> tag, and unordered lists are represented by the <ul> tag. List items are represented by the <li> tag.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

Post navigation

❮ Previous Post: Writing first PHP program
Next Post: Visual Studio Code HTML shortcut code ❯

Leave a Reply Cancel reply

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

Recent Posts

  • IT Career Guide for College Students in Nepal: A Complete Roadmap to Success
  • Procedural Programming vs Object-Oriented Programming (POP vs OOP)
  • What is Programming? A Beginner’s Complete Guide
  • Introduction to Object-Oriented Programming (OOP): Concepts, Features, and Benefits
  • Difference Between C and C++

Categories

  • C & C++
  • C#
  • Course
  • CSS
  • Cyber Security
  • Database
  • HTML
  • IT Career
  • IT Degrees
  • IT Degrees in Nepal
  • IT Fundamentals
  • Java
  • JavaScript
  • Microsoft SQL Server
  • My Learnings
  • MySQL
  • Oracle
  • PHP
  • Programming
  • Quotes
  • Technology
  • Technology Pioneers
  • Universities
  • Web Development
  • Web Hosting

Copyright ©2026