0% found this document useful (0 votes)
519 views

HTML 5 Crash Course

To create HTML files, you need a text editor and browser. HTML is the markup language used to build webpages and is made up of tags that define elements like headings, paragraphs, and the overall page structure which includes the <!DOCTYPE>, <html>, <head>, <title>, and <body> tags. HTML files are saved with a .html or .htm extension and viewed in a web browser without needing a server.
Copyright
© © All Rights Reserved
Available Formats
Download as PPSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
519 views

HTML 5 Crash Course

To create HTML files, you need a text editor and browser. HTML is the markup language used to build webpages and is made up of tags that define elements like headings, paragraphs, and the overall page structure which includes the <!DOCTYPE>, <html>, <head>, <title>, and <body> tags. HTML files are saved with a .html or .htm extension and viewed in a web browser without needing a server.
Copyright
© © All Rights Reserved
Available Formats
Download as PPSX, PDF, TXT or read online on Scribd
You are on page 1/ 7

CRASH COURSE

from Scratch
with ISHWAR ACADEMY
What We Need?

 Text Editor (eg. Notepad++, Sublime Text Editor etc.)

 Browser (eg. Firefox, Chrome, IE etc.)


What is HTML?
 HyperText Markup Language.

 Building Block of the web.

 It is NOT a Programming Language.

 Markup Language for creating Webpages/Documents.


Creating an HTML File
 File must be end with the .html or .htm extension.

 Runs in a Web Browser.

 Does not need a server.


HTML Tag Syntax
<tag_name> Content </tag_name>

 Start tag and end tag comes in a pair.


Eg. <h1> Hello World. </h1>
<p> This is a paragraph. </p>
Structure of HTML Page <!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
Webpage Content
</body>
</html>
SUBSCRIBE,
LIKE
&
SHARE

You might also like