Web Devlopment using HTML

About Course
HTML stands for HyperText Markup Language. It’s the standard language used to create and design webpages. HTML provides the basic structure for a webpage by using a system of tags and attributes. Here’s a quick overview: 1. Tags: HTML uses tags to define elements on a page. Tags are enclosed in angle brackets, like `<html>`, `<head>`, and `<body>`. Most tags come in pairs: an opening tag (e.g., `<p>`) and a closing tag (e.g., `</p>`). 2. Elements: An HTML element consists of an opening tag, content, and a closing tag. For example, `<h1>This is a heading</h1>` is a heading element. 3. Attributes: Tags can have attributes that provide additional information about an element. For instance, `<a href=”https://www.example.com”>Visit Example</a>` includes an `href` attribute that specifies the URL for a link. 4. Document Structure: An HTML document typically starts with a `<!DOCTYPE html>` declaration, followed by the `<html>` tag, which encloses the `<head>` and `<body>` sections. The `<head>` contains meta-information like the page title, while the `<body>` contains the content displayed to users. Here’s a simple example of an HTML document: <!DOCTYPE html> <html> <head> <title>My First HTML Page</title> </head> <body> <h1>Hello, World!</h1> <p>This is a paragraph of text.</p> <a href=”https://www.example.com”>Visit Example</a> </body> </html>
Course Content
LESSONS
-
Lesson 01 (Introduction, Font Size, Font Styles, Font Color, Bold, Italic, Underline) – Video
38:53 -
Lesson 02 (Bullet and Number List, Tables) – Video
19:49 -
Lesson 03 (Project 01 HTML Coding) – Video
41:39 -
Lesson 04 (Frame, Image, Hyperlinks and Project 04 Codings) – Video
24:28 -
Frameset Project – 03 Coding video
23:44 -
HTML CSS
19:22 -
HTML DIV
09:36 -
HTML class Attribute