Skip to main content

Introduction and Basic Structure of HTML | Web Development |

 

Introduction: 

HTML Stands for Hyper Text Markup Language is the standard language for creating websites and webpages. HTML provides the structures and layout for the content. HTML is widely used for creating websites. HTML works with CSS (Cascading Style Sheet), JavaScript, etc. to create visually appealing, functional, and interactive webpages. You can also learn through the video.





HTML Features:

HTML has many features which make it better. Some of them are listed below:

  • Structure: HTML provides a structured way to organize content using headings, paragraphs, lists, images, videos, and tables.
  • Hyperlinks: HTML enables the creation of hyperlinks, allowing users to navigate between different web pages and resources.
  • Multimedia Support: In HTML, you can connect multimedia elements like images, videos, and audio files into web pages.
  • Forms: HTML includes form elements for capturing user input, such as text fields, checkboxes, radio buttons, and dropdown menus.
  • Accessibility: HTML supports semantic elements that improve accessibility for users with disabilities and enhance search engine optimization.

HTML History:

HTML was developed by Tem Berners Lee, a British computer scientist, as a means to share and format scientific documents among researchers. It was developed in 1989 AD. The first version of the HTML, HTML 1.0 was released in year 1993. Over the years, HTML has evolved in response to advancements in web technology and the changing needs of users and developers. The most widely used HTML version for writing is HTML 5 in 2014. It introduces many new features and enhancements, including support for multimedia elements, improved semantic markup, and enhanced accessibility. It has become popular for web development, replacing older versions of HTML.


HTML Basics:

The basic structure of the HTML looks as below:

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

Above structure of the HTML is described below:

<!DOCTYPE html>: Declares the document type and version of HTML being used. <html>: Represents the root element of the HTML document. <head>: Contains meta-information about the document, such as the title and links to external resources. <body>: Encloses the main content of the document displayed in the browser.

<meta>: Meta Tag (<meta>) is an HTML component that gives the metadata about a HTML document. Metadata can be characterized as data that gives the data of different information.

<title>: Title in the HTML declares the title of any HTML document or the website.


This was the Introduction and the basic structure of the HTML. Hope you found this helpful.







Comments

Popular posts from this blog

Install TYPESHALA in 64-bit Window | TYPESHALA Download

  Introduction: In the modern era, Typing is the necessary skill which everyone should learn. To learn the English Typing we have many software available to install. But, learning Nepali typing is little bit hard due to the lack of appropriate software to run in our modern windows. Today we are going to talk about how we can install both English and nepali application TYPESHALA which runs in old window, we are going to do some steps in our computer to make it run in our modern windows. TYPESHALA:  Typeshala is the Typing Tutor Software for Windows  that users can learn to type in Nepali and English.  Typeshala   helps to build typing speed, improves the accuracy of typing, and thus makes it more productive. After completing each lesson, it monitors your Typing speed, which is word per minute and precision percentage. Typeshala  provides free hand typing and entertains the user with a small game. Typeshala is most useful for the beginner, who wants to learn...

Top Web Browsers in 2025: Which One Should You Use?

 The world of web browsers has evolved significantly in 2025. With the increasing need for speed, security, and personalization, web browsers have become more competitive than ever. If you're wondering which browser you should use today, you're in the right place. In my latest YouTube video, I break down the Top Web Browsers of 2025 , comparing their features, performance, and overall user experience. Here's a detailed overview to help you choose the right one for your needs! 1. Google Chrome – Still the King, but With New Tricks Chrome continues to dominate the browser world with its lightning-fast speed, massive extension library, and seamless integration with Google services. In 2025, Chrome has introduced advanced AI features , better battery optimization , and improved privacy controls that give users more flexibility over their data. ✅ Best for: Power users, developers, Google ecosystem users ⚡ Highlight: Smart Tab Organizer (auto-sorts your tabs based on beha...

Basic Structure and Syntax of C Programming (Complete Guide)

Basic Structure and Syntax of C Programming (Complete Guide) Learn the fundamental structure, syntax rules, and how to write clean C programs from scratch. 🎥 Video Tutorial (YouTube video will be added here once uploaded) 👉 Watch the full tutorial here: [Video Link Coming Soon] 📌 Introduction Understanding the basic structure and syntax of C is the foundation for writing error-free programs. Syntax is like the grammar of programming—it tells the computer how to interpret your code . In this chapter, you will learn: Basic structure of a C program Rules of C syntax Writing clean and readable code Common beginner mistakes Examples and exercises to practice By the end, you’ll be ready to write your first fully structured C programs confidently. 1. Basic Structure of a C Program Every C program follows a simple structure , which allows the compiler to execute it properly. General Format: # include <header_files> int main () { // Your code ...