Course Content
WEB DEVELOPIG
Web development is the process of creating and maintaining websites and web applications. It involves designing how a website looks, building its structure, and adding functionality to make it interactive and user-friendly. Web development is mainly divided into three parts: Frontend – what users see (design, layout, buttons) Backend – how the website works (server, database) Full Stack – both frontend and backend together Using technologies like HTML, CSS, and JavaScript, developers create websites that can run on browsers and devices. From simple personal websites to complex platforms like e-commerce and social media, everything is built using web development.
0/7
Web Developing

Topic 1: Creating Of Index.Html 

What is index.html?

index.html is the main file of any website.

 Whenever you open a website, the browser first looks for:

index.html

-> It is the homepage (default page)
-> Every website must have this file.

How to Create index.html

 Step-by-Step:

Step 1:

Right-click in a folder → Click New File

Step 2:

Name the file:

index.html

 Important Tip:

->Must end with .html

->Not .txt

Step 3:

Open it in a code editor (like VS Code , notepad , codeblock)


Topic 2: Basic Structure of HTML

Basic Structure of HTML

Every HTML page follows a fixed structure.

->Standard Template:

<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first webpage.</p>
</body>
</html>

Topic 3:Understanding Each Part

1.<!DOCTYPE html>

  • Tells browser → This is an HTML5 document

2.<html>

  • Root of the webpage
  • Everything comes inside this

 3.<head>

  • Contains information
  • Not visible on page

Example:

  • Title
  • Meta data

 4.<title>

  • Shows in browser tab

 5.<body>

  • Main content of website
  • Everything user sees

 Example:

  • Text
  • Images
  • Buttons

 

Topic 4: Running HTML in Browser

1. Introduction

After writing HTML code, the next step is to run and view your webpage. Unlike programming languages, HTML does not need a compiler — it runs directly in a web browser like Chrome, Edge, or Firefox.

2. What is a Browser?

A browser is software used to open and view websites.

Examples:

  • Google Chrome
  • Microsoft Edge
  • Mozilla Firefox(Not Used Much Now)
  • Opera Gx

The browser reads your HTML file and shows it as a webpage.

3. Steps to Run HTML File

Step 1: Create HTML File

  • Open Notepad or VS Code
  • Save file as:index.html
  • Open An Browser (Google , Opera etc) and Press [ctrl + O] select Your File And Click On It. 

PRATICE TIME!!!!!!!

Create a simple “My Dream” webpage using different HTML text formatting tags in one paragraph only.

Use the following tags:

  • <b>
  • <i>
  • <em>
  • <u>
  • <small>
  • <mark>

Notice:

All formatting tags should be used inside a single paragraph only.

error: Content is protected !!