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)

Namespaces in C#
Namespaces in C#Namespaces in C#
Namespaces in C#
yogita kachve
Ā 
Mobile cloud computing
Mobile cloud computingMobile cloud computing
Mobile cloud computing
snoreen
Ā 
Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
Naz Abdalla
Ā 
Static keyword ppt
Static keyword pptStatic keyword ppt
Static keyword ppt
Vinod Kumar
Ā 
Genesis and Overview of Java
Genesis and Overview of Java Genesis and Overview of Java
Genesis and Overview of Java
Ravi_Kant_Sahu
Ā 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
Shahrzad Peyman
Ā 
Peer To Peer Protocols
Peer To Peer ProtocolsPeer To Peer Protocols
Peer To Peer Protocols
anishgoel
Ā 
VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
VTU 1ST SEM  PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...VTU 1ST SEM  PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
vtunotesbysree
Ā 
Computer Network notes (handwritten) UNIT 1
Computer Network notes (handwritten) UNIT 1Computer Network notes (handwritten) UNIT 1
Computer Network notes (handwritten) UNIT 1
NANDINI SHARMA
Ā 
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptxLecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
IrsaAamir1
Ā 
Java Servlets
Java ServletsJava Servlets
Java Servlets
BG Java EE Course
Ā 
Training report on web developing
Training report on web developingTraining report on web developing
Training report on web developing
Jawhar Ali
Ā 
Introduction to Java Programming
Introduction to Java ProgrammingIntroduction to Java Programming
Introduction to Java Programming
Ravi Kant Sahu
Ā 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project Report
Milind Gokhale
Ā 
Services provided by os
Services provided by osServices provided by os
Services provided by os
Sumant Diwakar
Ā 
Deployment Models in Cloud Computing
Deployment Models in Cloud ComputingDeployment Models in Cloud Computing
Deployment Models in Cloud Computing
Anirban Pati
Ā 
Java Basic Oops Concept
Java Basic Oops ConceptJava Basic Oops Concept
Java Basic Oops Concept
atozknowledge .com
Ā 
Inter process communication
Inter process communicationInter process communication
Inter process communication
RJ Mehul Gadhiya
Ā 
Operating Systems: Process Scheduling
Operating Systems: Process SchedulingOperating Systems: Process Scheduling
Operating Systems: Process Scheduling
Damian T. Gordon
Ā 
Network security - OSI Security Architecture
Network security - OSI Security ArchitectureNetwork security - OSI Security Architecture
Network security - OSI Security Architecture
BharathiKrishna6
Ā 
Namespaces in C#
Namespaces in C#Namespaces in C#
Namespaces in C#
yogita kachve
Ā 
Mobile cloud computing
Mobile cloud computingMobile cloud computing
Mobile cloud computing
snoreen
Ā 
Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
Naz Abdalla
Ā 
Static keyword ppt
Static keyword pptStatic keyword ppt
Static keyword ppt
Vinod Kumar
Ā 
Genesis and Overview of Java
Genesis and Overview of Java Genesis and Overview of Java
Genesis and Overview of Java
Ravi_Kant_Sahu
Ā 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
Shahrzad Peyman
Ā 
Peer To Peer Protocols
Peer To Peer ProtocolsPeer To Peer Protocols
Peer To Peer Protocols
anishgoel
Ā 
VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
VTU 1ST SEM  PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...VTU 1ST SEM  PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & ...
vtunotesbysree
Ā 
Computer Network notes (handwritten) UNIT 1
Computer Network notes (handwritten) UNIT 1Computer Network notes (handwritten) UNIT 1
Computer Network notes (handwritten) UNIT 1
NANDINI SHARMA
Ā 
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptxLecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
Lecture 2 - Asynchrnous and Synchronous Computation & Communication.pptx
IrsaAamir1
Ā 
Training report on web developing
Training report on web developingTraining report on web developing
Training report on web developing
Jawhar Ali
Ā 
Introduction to Java Programming
Introduction to Java ProgrammingIntroduction to Java Programming
Introduction to Java Programming
Ravi Kant Sahu
Ā 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project Report
Milind Gokhale
Ā 
Services provided by os
Services provided by osServices provided by os
Services provided by os
Sumant Diwakar
Ā 
Deployment Models in Cloud Computing
Deployment Models in Cloud ComputingDeployment Models in Cloud Computing
Deployment Models in Cloud Computing
Anirban Pati
Ā 
Inter process communication
Inter process communicationInter process communication
Inter process communication
RJ Mehul Gadhiya
Ā 
Operating Systems: Process Scheduling
Operating Systems: Process SchedulingOperating Systems: Process Scheduling
Operating Systems: Process Scheduling
Damian T. Gordon
Ā 
Network security - OSI Security Architecture
Network security - OSI Security ArchitectureNetwork security - OSI Security Architecture
Network security - OSI Security Architecture
BharathiKrishna6
Ā 

Viewers also liked (19)

Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
Ā 
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
Joseaneciencias
Ā 
Introduction to package in java
Introduction to package in javaIntroduction to package in java
Introduction to package in java
Prognoz Technologies Pvt. Ltd.
Ā 
Tuples, Dicts and Exception Handling
Tuples, Dicts and Exception HandlingTuples, Dicts and Exception Handling
Tuples, Dicts and Exception Handling
PranavSB
Ā 
Spring AOP
Spring AOPSpring AOP
Spring AOP
Tata Consultancy Services
Ā 
CSS React Talk
CSS React TalkCSS React Talk
CSS React Talk
Ivan Kotov
Ā 
Java Question & Answers - I
Java Question & Answers - IJava Question & Answers - I
Java Question & Answers - I
Tata Consultancy Services
Ā 
The PSF and our community
The PSF and our communityThe PSF and our community
The PSF and our community
Younggun Kim
Ā 
SolarPulse helps PV plants reduce field expenses
SolarPulse helps PV plants reduce field expensesSolarPulse helps PV plants reduce field expenses
SolarPulse helps PV plants reduce field expenses
MachinePulse
Ā 
Indian saops and detergent industry( Nirma)
Indian saops and detergent industry( Nirma) Indian saops and detergent industry( Nirma)
Indian saops and detergent industry( Nirma)
pooja Devi(Guru Nanak dev University)
Ā 
Summer training report kcc bank
Summer training report  kcc bankSummer training report  kcc bank
Summer training report kcc bank
pooja Devi(Guru Nanak dev University)
Ā 
Greece_Group_B_Final - Rosa
Greece_Group_B_Final - RosaGreece_Group_B_Final - Rosa
Greece_Group_B_Final - Rosa
Rosa Panadero, MBA روسا ŲØŲ§Ł†Ų§ŲÆŁŠŲ±ŁˆŲŒ Ł…Ų§Ų¬Ų³ŲŖŁŠŲ± ال؄دارة Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©
Ā 
State Management In ASP.NET And ASP.NET MVC
State Management In ASP.NET And ASP.NET MVCState Management In ASP.NET And ASP.NET MVC
State Management In ASP.NET And ASP.NET MVC
jinaldesailive
Ā 
Recruitment
RecruitmentRecruitment
Recruitment
pooja Devi(Guru Nanak dev University)
Ā 
Basic concept of Object Oriented Programming
Basic concept of Object Oriented Programming Basic concept of Object Oriented Programming
Basic concept of Object Oriented Programming
Prognoz Technologies Pvt. Ltd.
Ā 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - Simplified
Mohd Manzoor Ahmed
Ā 
CSS Power Tools
CSS Power ToolsCSS Power Tools
CSS Power Tools
Nicole Sullivan
Ā 
3-TIER ARCHITECTURE IN ASP.NET MVC
3-TIER ARCHITECTURE IN ASP.NET MVC3-TIER ARCHITECTURE IN ASP.NET MVC
3-TIER ARCHITECTURE IN ASP.NET MVC
Mohd Manzoor Ahmed
Ā 
Marketing Plan - Solarium Helios
Marketing Plan - Solarium HeliosMarketing Plan - Solarium Helios
Marketing Plan - Solarium Helios
Anatoly12
Ā 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
Ā 
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
EMEF TAJAL CIÊNCIAS JOSEANE AGUA 1
Joseaneciencias
Ā 
Tuples, Dicts and Exception Handling
Tuples, Dicts and Exception HandlingTuples, Dicts and Exception Handling
Tuples, Dicts and Exception Handling
PranavSB
Ā 
CSS React Talk
CSS React TalkCSS React Talk
CSS React Talk
Ivan Kotov
Ā 
The PSF and our community
The PSF and our communityThe PSF and our community
The PSF and our community
Younggun Kim
Ā 
SolarPulse helps PV plants reduce field expenses
SolarPulse helps PV plants reduce field expensesSolarPulse helps PV plants reduce field expenses
SolarPulse helps PV plants reduce field expenses
MachinePulse
Ā 
State Management In ASP.NET And ASP.NET MVC
State Management In ASP.NET And ASP.NET MVCState Management In ASP.NET And ASP.NET MVC
State Management In ASP.NET And ASP.NET MVC
jinaldesailive
Ā 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - Simplified
Mohd Manzoor Ahmed
Ā 
3-TIER ARCHITECTURE IN ASP.NET MVC
3-TIER ARCHITECTURE IN ASP.NET MVC3-TIER ARCHITECTURE IN ASP.NET MVC
3-TIER ARCHITECTURE IN ASP.NET MVC
Mohd Manzoor Ahmed
Ā 
Marketing Plan - Solarium Helios
Marketing Plan - Solarium HeliosMarketing Plan - Solarium Helios
Marketing Plan - Solarium Helios
Anatoly12
Ā 
Ad

Similar to Learn html and css from scratch (20)

Workshop 2 Slides.pptx
Workshop 2 Slides.pptxWorkshop 2 Slides.pptx
Workshop 2 Slides.pptx
DaniyalSardar
Ā 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
Ā 
Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
Ā 
gdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptxgdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
Ā 
Introduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptxIntroduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptx
deepak37877
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
Ā 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
Ā 
HTML2.pdf
HTML2.pdfHTML2.pdf
HTML2.pdf
202GCET19
Ā 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
Ā 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
Ā 
boot camp proximus.pptx
boot camp proximus.pptxboot camp proximus.pptx
boot camp proximus.pptx
Aakashkumar350944
Ā 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
Ā 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Erin M. Kidwell
Ā 
HTML CSS.pdf
HTML CSS.pdfHTML CSS.pdf
HTML CSS.pdf
ANKURAGARWAL252666
Ā 
Pfnp slides
Pfnp slidesPfnp slides
Pfnp slides
William Myers
Ā 
Web Design & Development - Session 2
Web Design & Development - Session 2Web Design & Development - Session 2
Web Design & Development - Session 2
Shahrzad Peyman
Ā 
HTMLforbeginerslearntocodeforbeginersinfh
HTMLforbeginerslearntocodeforbeginersinfhHTMLforbeginerslearntocodeforbeginersinfh
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
Ā 
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSSGDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
Ā 
Workshop 2 Slides.pptx
Workshop 2 Slides.pptxWorkshop 2 Slides.pptx
Workshop 2 Slides.pptx
DaniyalSardar
Ā 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
Ā 
Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
Ā 
gdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptxgdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
Ā 
Introduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptxIntroduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptx
deepak37877
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
Ā 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
Ā 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
Ā 
HTML2.pdf
HTML2.pdfHTML2.pdf
HTML2.pdf
202GCET19
Ā 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
Ā 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
Ā 
boot camp proximus.pptx
boot camp proximus.pptxboot camp proximus.pptx
boot camp proximus.pptx
Aakashkumar350944
Ā 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
Ā 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Erin M. Kidwell
Ā 
Web Design & Development - Session 2
Web Design & Development - Session 2Web Design & Development - Session 2
Web Design & Development - Session 2
Shahrzad Peyman
Ā 
HTMLforbeginerslearntocodeforbeginersinfh
HTMLforbeginerslearntocodeforbeginersinfhHTMLforbeginerslearntocodeforbeginersinfh
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
Ā 
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSSGDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
Ā 
Ad

More from Mohd Manzoor Ahmed (7)

Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Live Project On ASP.Net Core 2.0 MVC - Free WebinarLive Project On ASP.Net Core 2.0 MVC - Free Webinar
Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Mohd Manzoor Ahmed
Ā 
Learn TypeScript from scratch
Learn TypeScript from scratchLearn TypeScript from scratch
Learn TypeScript from scratch
Mohd Manzoor Ahmed
Ā 
Angularjs Live Project
Angularjs Live ProjectAngularjs Live Project
Angularjs Live Project
Mohd Manzoor Ahmed
Ā 
Learn JavaScript From Scratch
Learn JavaScript From ScratchLearn JavaScript From Scratch
Learn JavaScript From Scratch
Mohd Manzoor Ahmed
Ā 
Introduction to angular js for .net developers
Introduction to angular js  for .net developersIntroduction to angular js  for .net developers
Introduction to angular js for .net developers
Mohd Manzoor Ahmed
Ā 
C# simplified
C#  simplifiedC#  simplified
C# simplified
Mohd Manzoor Ahmed
Ā 
Asp net-mvc-3 tier
Asp net-mvc-3 tierAsp net-mvc-3 tier
Asp net-mvc-3 tier
Mohd Manzoor Ahmed
Ā 
Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Live Project On ASP.Net Core 2.0 MVC - Free WebinarLive Project On ASP.Net Core 2.0 MVC - Free Webinar
Live Project On ASP.Net Core 2.0 MVC - Free Webinar
Mohd Manzoor Ahmed
Ā 
Learn TypeScript from scratch
Learn TypeScript from scratchLearn TypeScript from scratch
Learn TypeScript from scratch
Mohd Manzoor Ahmed
Ā 
Learn JavaScript From Scratch
Learn JavaScript From ScratchLearn JavaScript From Scratch
Learn JavaScript From Scratch
Mohd Manzoor Ahmed
Ā 
Introduction to angular js for .net developers
Introduction to angular js  for .net developersIntroduction to angular js  for .net developers
Introduction to angular js for .net developers
Mohd Manzoor Ahmed
Ā 

Recently uploaded (20)

Cyber security cyber security cyber security cyber security cyber security cy...
Cyber security cyber security cyber security cyber security cyber security cy...Cyber security cyber security cyber security cyber security cyber security cy...
Cyber security cyber security cyber security cyber security cyber security cy...
pranavbodhak
Ā 
Co-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using ProvenanceCo-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using Provenance
Paul Groth
Ā 
Measuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI SuccessMeasuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI Success
Nikki Chapple
Ā 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
Ā 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
Ā 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
Ā 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : IntroductionJira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
Ā 
Gihbli AI and Geo sitution |use/misuse of Ai Technology
Gihbli AI and Geo sitution |use/misuse of Ai TechnologyGihbli AI and Geo sitution |use/misuse of Ai Technology
Gihbli AI and Geo sitution |use/misuse of Ai Technology
zainkhurram1111
Ā 
European Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility TestingEuropean Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility Testing
Julia Undeutsch
Ā 
Let’s Get Slack Certified! šŸš€- Slack Community
Let’s Get Slack Certified! šŸš€- Slack CommunityLet’s Get Slack Certified! šŸš€- Slack Community
Let’s Get Slack Certified! šŸš€- Slack Community
SanjeetMishra29
Ā 
Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025
Prasta Maha
Ā 
STKI Israel Market Study 2025 final v1 version
STKI Israel Market Study 2025 final v1 versionSTKI Israel Market Study 2025 final v1 version
STKI Israel Market Study 2025 final v1 version
Dr. Jimmy Schwarzkopf
Ā 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
Ā 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
Ā 
SDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhereSDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhere
Adtran
Ā 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
Ā 
Agentic AI - The New Era of Intelligence
Agentic AI - The New Era of IntelligenceAgentic AI - The New Era of Intelligence
Agentic AI - The New Era of Intelligence
Muzammil Shah
Ā 
The case for on-premises AI
The case for on-premises AIThe case for on-premises AI
The case for on-premises AI
Principled Technologies
Ā 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
Ā 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
Ā 
Cyber security cyber security cyber security cyber security cyber security cy...
Cyber security cyber security cyber security cyber security cyber security cy...Cyber security cyber security cyber security cyber security cyber security cy...
Cyber security cyber security cyber security cyber security cyber security cy...
pranavbodhak
Ā 
Co-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using ProvenanceCo-Constructing Explanations for AI Systems using Provenance
Co-Constructing Explanations for AI Systems using Provenance
Paul Groth
Ā 
Measuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI SuccessMeasuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI Success
Nikki Chapple
Ā 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
Ā 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
Ā 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
Ā 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : IntroductionJira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
Ā 
Gihbli AI and Geo sitution |use/misuse of Ai Technology
Gihbli AI and Geo sitution |use/misuse of Ai TechnologyGihbli AI and Geo sitution |use/misuse of Ai Technology
Gihbli AI and Geo sitution |use/misuse of Ai Technology
zainkhurram1111
Ā 
European Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility TestingEuropean Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility Testing
Julia Undeutsch
Ā 
Let’s Get Slack Certified! šŸš€- Slack Community
Let’s Get Slack Certified! šŸš€- Slack CommunityLet’s Get Slack Certified! šŸš€- Slack Community
Let’s Get Slack Certified! šŸš€- Slack Community
SanjeetMishra29
Ā 
Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025
Prasta Maha
Ā 
STKI Israel Market Study 2025 final v1 version
STKI Israel Market Study 2025 final v1 versionSTKI Israel Market Study 2025 final v1 version
STKI Israel Market Study 2025 final v1 version
Dr. Jimmy Schwarzkopf
Ā 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
Ā 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
Ā 
SDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhereSDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhere
Adtran
Ā 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
Ā 
Agentic AI - The New Era of Intelligence
Agentic AI - The New Era of IntelligenceAgentic AI - The New Era of Intelligence
Agentic AI - The New Era of Intelligence
Muzammil Shah
Ā 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
Ā 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
Ā 

Learn html and css from scratch