SlideShare a Scribd company logo
Learn html and css from scratch
Learn HTML & CSS
From Scratch
Mohd Manzoor Ahmed [MCT]
manzoor_trainer manzoorthetrainer.com
Get The Complete
Video Course Here
(https://goo.gl/I5eopR)
What Are We Going To Learn?
Introduction To HTML
Page Structure
Tags
Comments And Page Information
Document Structure
Links
Images
Static Vs Dynamic Pages
Forms
Introduction To CSS
Approaches Of Applying Style
CSS Selectors
Why HTML?
Share information with the world in the form of different pages linked together.
Get The Complete
Video Course Here
What is HTML?
HTML stands for HyperText Markup Language.
It is used to design and develop Web Pages.
Simple
Browser/Platform Independent
Not Case Sensitive
A medium for User Interface
Observation..
Let’s observer a real world any page. Say Google.com
Page Structure
HTML Or Web Page
<!DOCTYPE>
A Demo..
Let us create our first page say MyFirstPage.html.
You can use any text editor to create a web page, say notepad.
Its extension should be either htm or html(popularly used).
Introduction To Visual Studio
https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx
Any Version
<div id=”myDiv”> Hello </div>
Open Tag Close TagAttribute
Key Value
Content
HTML Element
Everything Is A Tag
The HTML instructions are called Tags. Basically tags are classified into two
categories.
Container Tags :Tags that have starting as well as ending part.
e.g.: <TITLE>Title of the Web Page </TITLE>
Empty Tags : Tags that do not have the closing part.
e.g.: <br>
HTML instructions + text to which the instructions apply is an HTML element.
Attributes
A key value pairs inside the tag which defines the some features of text are called as
Attributes.
Some important attributes of the BODY tag
BGCOLOR = “color” / “#rrggbb”
BGPROPERTIES=”FIXED”
BACKGROUND = “url of the image”
TEXT = “color” / “#rrggbb”
Get The Complete
Video Course Here
Demo..
For Attributes
Comments And Page Information
<!-- Comment Text -->
Page information goes into the <head> tag
Mostly used page information tags are
<meta/>
<title>
<link/>
Demo..
For Page Information
Document Structure
Below are the mostly used tags to structure the content on the body of the page.
<h[1-6]>
<div>
<span>
<p>
<pre>
Demo..
For Document Structure Tags
Text Markup
Tags mostly used to give some different style or look to the text on the body of page.
<strong>
<em>
<code>
<del>
<sub>
Get The Complete
Video Course Here
Demo..
For Text Markup
Lists
The tags used to list items either in bullet style or numbered style
<ol>
<ul>
<li>
Demo..
For List
Tables
<table>
<caption>
<thead>
<tbody>
<tfoot>
<col>
<tr>
<th>
<td>
Most of the page layouts are based upon tables or to show some tabular data on web
pages we some time use tables
Demo..
For Tables
Get The Complete
Video Course Here
Images
To display images on web page we use image tag i.e.,
<img>
Demo..
For Images
Links
The link tags are also called as anchor tag <a href=’xxx’></a>
The link tags are used to
Link one page to another page .
To make a section of page as anchor.
One section of page to another section(anchor) of page.
Link to send email board
Demo..
For Anchor Tag
Static Vs Dynamic Pages
Static Web Page
Same content to any user, anywhere
Requires web development expertise to
update site
Site not as useful for the user
Content can get stagnant
Dynamic Web Page
Content may differ as per the user
request and location
Much more functional website
Much easier to update
New content brings people back to
the site and helps in the search
Forms
Whenever we want to interact with end user basically we need a form.
Forms can be created with the following form tags
<form>
<fieldset>(I love it)
<legend>
<input>
<select>
<option>
<textarea>
Demo..
For Form Design
Why CSS?
As HTML is mark-up language, I say CSS is a make-up language.
Don’t you want your content look good to the end user
What is CSS?
CSS stands for Cascading Style Sheets.
CSS describes how your web page should look.
For example its layout, color, font, size, etc.,
Observation..
Let’s observer a real world any page. Say Google.com
Get The Complete
Video Course Here
Three Different Approaches
There are three different approaches of inserting a style sheet:
Inline style
Internal style sheet
External style sheet
InLine
It is used to apply style to a single element.
Eg:
<div id="myDiv" style="color:white; background-color:linen;">
This is my Div.
</div>
Not recommended to use extensively.
Demo..
For Inline Style..
Internal
It is used to apply style to a single page.
Get The Complete
Video Course Here
Demo..
For internal style sheet
External
It is used to apply style to all page of a web site.
External style sheet is a file created using any text editor.
It should have .css as extension
Every page should refer that file using <link> tag
Say my style sheet file name is myStyle.css
The link that I should include in head is
Demo..
For external stylesheet
div.x {
color: red;
text-align: center;
}
Selector
Value
Decoration
Decoration
Style For Div
Class
Style For Div
CSS Selectors
To find an element on the page and map it to the style we use different selectors.
Few of them are as follows
Element
id
class
grouping
element Selector
Select all <div> elements and apply the style.
div {
color: red;
text-align: center;
}
<div> The content goes here </div>
Demo..
For element selector
Get The Complete
Video Course Here
id Selector
Select the element with myDiv as id and apply the style.
#myDiv {
color: red;
text-align: center;
}
<div id=”myDiv”> The content goes here </div>
Demo..
For element selector
class Selector
Select the elements with myClass as class and apply the style.
.myClass {
color: red;
text-align: center;
}
<div class=”myclass”> The content goes here </div>
<p class=”myclass”> The content goes here </p>
element.class Selector
Select the all Div elements with myClass as class and apply the style.
Div.myClass {
color: red;
text-align: center;
}
<div id= “div1” class=”myclass”> The content goes here </div>
<div id =”div2” class=”myclass”> The content goes here </div>
<p class=”myclass”> The content goes here </p>
Demo..
for class selector
grouping Selector
div {
text-align: center;
color: red;
}
h2 {
text-align: center;
color: red;
}
p {
text-align: center;
color: red;
}
div, h2, p {
text-align: center;
color: red;
}
Get The Complete
Video Course Here
Demo..
For grouping selector
css Selector Traversing
ul#menu {
padding: 0;
}
ul#menu li {
display: inline;
}
ul#menu li a {
background-color: black;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px 4px 0 0;
}
ul#menu li a:hover {
background-color: orange;
}
<ul id="menu">
<li><a href="/html.htm">HTML</a></li>
<li><a href="/css.htm">CSS</a></li>
<li><a href="/js.htm">JavaScript</a></li>
<li><a href="/php.htm">PHP</a></li>
</ul>
Demo..
For grouping selector
Develop A Static Web Site
Step 1: Create all pages (Home, About us, Our Services and Contact Us)
Step 2: Add a list of links to all pages
Step 3: Create a style sheet
Step 4: Apply style to all pages
Define Layout
Header
Left Content
footer
Demo..
For developing static website.
Hosting Web Site On IIS
Check For IIS availability on the OS
Install IIS On Windows7
Host the website
Demo..
For hosting website on iis.
Thanks
Get The Complete
Video Course Here

More Related Content

What's hot (20)

PDF
CSS Day: CSS Grid Layout
Rachel Andrew
 
PPTX
Website performance optimization
Shubham Shinde
 
PDF
Build a Website Using HTML + CSS
Anna Cook (she/her)
 
KEY
HTML CSS & Javascript
David Lindkvist
 
PDF
JSP Components and Directives.pdf
Arumugam90
 
PPTX
Complete Lecture on Css presentation
Salman Memon
 
PPT
Test automation workshop slideset
Towo Toivola
 
PPTX
Types of Selectors (HTML)
Deanne Alcalde
 
PPTX
Cómo optimizar la Calidad y Relevancia de los contenidos de tu e-commerce
Nacho Benavides Ruiz
 
PPT
Rendering XML Documents
yht4ever
 
PPTX
HTML5 and DHTML
patelpriyank01
 
PDF
خدمات الويب (Web Services) و كيف تنشئها
lunarhalo
 
PPTX
Windows form application - C# Training
Moutasm Tamimi
 
PDF
Introduction to Bootstrap
Ron Reiter
 
PPT
Intro Html
Chidanand Byahatti
 
PPTX
css.ppt
bhasula
 
PPTX
ACTUALIZAR registros de la base de datos desde página web dinámica
ADRIANERNESTOGERMANB
 
PPSX
HTML Comprehensive Overview
Mohamed Loey
 
PDF
Py.test
soasme
 
CSS Day: CSS Grid Layout
Rachel Andrew
 
Website performance optimization
Shubham Shinde
 
Build a Website Using HTML + CSS
Anna Cook (she/her)
 
HTML CSS & Javascript
David Lindkvist
 
JSP Components and Directives.pdf
Arumugam90
 
Complete Lecture on Css presentation
Salman Memon
 
Test automation workshop slideset
Towo Toivola
 
Types of Selectors (HTML)
Deanne Alcalde
 
Cómo optimizar la Calidad y Relevancia de los contenidos de tu e-commerce
Nacho Benavides Ruiz
 
Rendering XML Documents
yht4ever
 
HTML5 and DHTML
patelpriyank01
 
خدمات الويب (Web Services) و كيف تنشئها
lunarhalo
 
Windows form application - C# Training
Moutasm Tamimi
 
Introduction to Bootstrap
Ron Reiter
 
Intro Html
Chidanand Byahatti
 
css.ppt
bhasula
 
ACTUALIZAR registros de la base de datos desde página web dinámica
ADRIANERNESTOGERMANB
 
HTML Comprehensive Overview
Mohamed Loey
 
Py.test
soasme
 

Viewers also liked (19)

PDF
Html / CSS Presentation
Shawn Calvert
 
PPTX
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
Joseaneciencias
 
PPTX
Introduction to package in java
Prognoz Technologies Pvt. Ltd.
 
PPTX
Tuples, Dicts and Exception Handling
PranavSB
 
PDF
CSS React Talk
Ivan Kotov
 
PPT
Java Question & Answers - I
Tata Consultancy Services
 
PDF
The PSF and our community
Younggun Kim
 
PDF
SolarPulse helps PV plants reduce field expenses
MachinePulse
 
PPTX
Indian saops and detergent industry( Nirma)
pooja Devi(Guru Nanak dev University)
 
PPTX
Summer training report kcc bank
pooja Devi(Guru Nanak dev University)
 
PDF
State Management In ASP.NET And ASP.NET MVC
jinaldesailive
 
PPTX
Basic concept of Object Oriented Programming
Prognoz Technologies Pvt. Ltd.
 
PDF
MS.Net Interview Questions - Simplified
Mohd Manzoor Ahmed
 
PDF
CSS Power Tools
Nicole Sullivan
 
PPTX
3-TIER ARCHITECTURE IN ASP.NET MVC
Mohd Manzoor Ahmed
 
PDF
Marketing Plan - Solarium Helios
Anatoly12
 
Html / CSS Presentation
Shawn Calvert
 
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
Joseaneciencias
 
Introduction to package in java
Prognoz Technologies Pvt. Ltd.
 
Tuples, Dicts and Exception Handling
PranavSB
 
CSS React Talk
Ivan Kotov
 
Java Question & Answers - I
Tata Consultancy Services
 
The PSF and our community
Younggun Kim
 
SolarPulse helps PV plants reduce field expenses
MachinePulse
 
Indian saops and detergent industry( Nirma)
pooja Devi(Guru Nanak dev University)
 
Summer training report kcc bank
pooja Devi(Guru Nanak dev University)
 
State Management In ASP.NET And ASP.NET MVC
jinaldesailive
 
Basic concept of Object Oriented Programming
Prognoz Technologies Pvt. Ltd.
 
MS.Net Interview Questions - Simplified
Mohd Manzoor Ahmed
 
CSS Power Tools
Nicole Sullivan
 
3-TIER ARCHITECTURE IN ASP.NET MVC
Mohd Manzoor Ahmed
 
Marketing Plan - Solarium Helios
Anatoly12
 
Ad

Similar to Learn html and css from scratch (20)

PPTX
Module 3-Introduction to CSS (Chapter 3).pptx
SherwinSangalang3
 
PPTX
wd project.pptx
dsffsdf1
 
PDF
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Scott DeLoach
 
PPTX
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
 
PPTX
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
 
PPTX
Introduction to HTML-CSS-Javascript.pptx
deepak37877
 
PPTX
INTRODUCTIONS OF CSS
SURYANARAYANBISWAL1
 
PPTX
Web design and Development
Shagor Ahmed
 
DOCX
CSS Tutorial For Basic Students Studying
nirmala119429
 
PPTX
Introduction to HTML+CSS+Javascript.pptx
AliRaza899305
 
PPTX
Introduction to HTML+CSS+Javascript.pptx
KADAMBARIPUROHIT
 
PDF
IGCSE ICT (0417/0983) - Website Authoring - Ajiro Tech
Ajiro Ndi
 
PDF
Introduction to HTML and CSS
Mario Hernandez
 
PPTX
Teched Inetrgation ppt and lering in simple
JagadishBabuParri
 
PPTX
Introduction to HTML+CSS+Javascript.pptx
PedroGonzalez915307
 
PPTX
Introduction to HTML+CSS+Javascript.pptx
SadiaBaig6
 
PDF
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
PPTX
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
PDF
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Scott DeLoach
 
PPTX
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Module 3-Introduction to CSS (Chapter 3).pptx
SherwinSangalang3
 
wd project.pptx
dsffsdf1
 
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Scott DeLoach
 
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
 
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
 
Introduction to HTML-CSS-Javascript.pptx
deepak37877
 
INTRODUCTIONS OF CSS
SURYANARAYANBISWAL1
 
Web design and Development
Shagor Ahmed
 
CSS Tutorial For Basic Students Studying
nirmala119429
 
Introduction to HTML+CSS+Javascript.pptx
AliRaza899305
 
Introduction to HTML+CSS+Javascript.pptx
KADAMBARIPUROHIT
 
IGCSE ICT (0417/0983) - Website Authoring - Ajiro Tech
Ajiro Ndi
 
Introduction to HTML and CSS
Mario Hernandez
 
Teched Inetrgation ppt and lering in simple
JagadishBabuParri
 
Introduction to HTML+CSS+Javascript.pptx
PedroGonzalez915307
 
Introduction to HTML+CSS+Javascript.pptx
SadiaBaig6
 
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Scott DeLoach
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Ad

More from Mohd Manzoor Ahmed (7)

PPTX
Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Mohd Manzoor Ahmed
 
PPTX
Learn TypeScript from scratch
Mohd Manzoor Ahmed
 
PPTX
Angularjs Live Project
Mohd Manzoor Ahmed
 
PPTX
Learn JavaScript From Scratch
Mohd Manzoor Ahmed
 
PPTX
Introduction to angular js for .net developers
Mohd Manzoor Ahmed
 
PDF
C# simplified
Mohd Manzoor Ahmed
 
PDF
Asp net-mvc-3 tier
Mohd Manzoor Ahmed
 
Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Mohd Manzoor Ahmed
 
Learn TypeScript from scratch
Mohd Manzoor Ahmed
 
Angularjs Live Project
Mohd Manzoor Ahmed
 
Learn JavaScript From Scratch
Mohd Manzoor Ahmed
 
Introduction to angular js for .net developers
Mohd Manzoor Ahmed
 
C# simplified
Mohd Manzoor Ahmed
 
Asp net-mvc-3 tier
Mohd Manzoor Ahmed
 

Recently uploaded (20)

PPTX
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
Human-centred design in online workplace learning and relationship to engagem...
Tracy Tang
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
Why Orbit Edge Tech is a Top Next JS Development Company in 2025
mahendraalaska08
 
PDF
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
Human-centred design in online workplace learning and relationship to engagem...
Tracy Tang
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Why Orbit Edge Tech is a Top Next JS Development Company in 2025
mahendraalaska08
 
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
Persuasive AI: risks and opportunities in the age of digital debate
Speck&Tech
 

Learn html and css from scratch