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