SlideShare ist ein Scribd-Unternehmen logo
1 von 69
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

Weitere Àhnliche Inhalte

Was ist angesagt?

SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dung
SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dungSVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dung
SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dungCngBic2
 
27238688 kertas-kerja-program-bebas-denggi
27238688 kertas-kerja-program-bebas-denggi27238688 kertas-kerja-program-bebas-denggi
27238688 kertas-kerja-program-bebas-dengginorazimah80
 
Program gotong-royong perdana dan khidmat bantu pss
Program gotong-royong perdana dan khidmat bantu pssProgram gotong-royong perdana dan khidmat bantu pss
Program gotong-royong perdana dan khidmat bantu psstina12sara
 
Token Authentication in ASP.NET Core
Token Authentication in ASP.NET CoreToken Authentication in ASP.NET Core
Token Authentication in ASP.NET CoreStormpath
 
Security Patterns with the WSO2 ESB
Security Patterns with the WSO2 ESBSecurity Patterns with the WSO2 ESB
Security Patterns with the WSO2 ESBWSO2
 
Introduction to enterprise search
Introduction to enterprise searchIntroduction to enterprise search
Introduction to enterprise searchUsama Nada
 
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web application
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web applicationCĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web application
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web applicationducmanhkthd
 
Machine Learning Based Botnet Detection
Machine Learning Based Botnet DetectionMachine Learning Based Botnet Detection
Machine Learning Based Botnet Detectionbutest
 
BĂĄo cĂĄo thá»±c táș­p Athena - CNTT
BĂĄo cĂĄo thá»±c táș­p Athena - CNTTBĂĄo cĂĄo thá»±c táș­p Athena - CNTT
BĂĄo cĂĄo thá»±c táș­p Athena - CNTTVu Tran
 
Servlet sessions
Servlet sessionsServlet sessions
Servlet sessionsvantinhkhuc
 
Pamplet sukan
Pamplet sukanPamplet sukan
Pamplet sukanwosr
 
265991658-Pengantar-PHP-ppt.ppt
265991658-Pengantar-PHP-ppt.ppt265991658-Pengantar-PHP-ppt.ppt
265991658-Pengantar-PHP-ppt.pptilhamsafari2
 
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023 BUKIT GASING.pdf
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023  BUKIT GASING.pdfKERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023  BUKIT GASING.pdf
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023 BUKIT GASING.pdfOtel2Go
 
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena kid zack
 
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPT
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPTBĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPT
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPTMasterCode.vn
 
Rph subjek sukan
Rph subjek sukanRph subjek sukan
Rph subjek sukanluqmanazhar4
 
TáșĄi sao sá»­ dỄng Odoo
TáșĄi sao sá»­ dỄng OdooTáșĄi sao sá»­ dỄng Odoo
TáșĄi sao sá»­ dỄng OdooDavid Tran
 

Was ist angesagt? (20)

SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dung
SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dungSVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dung
SVM trong tĂŹm kiáșżm áșŁnh dá»±a vĂ o nội dung
 
27238688 kertas-kerja-program-bebas-denggi
27238688 kertas-kerja-program-bebas-denggi27238688 kertas-kerja-program-bebas-denggi
27238688 kertas-kerja-program-bebas-denggi
 
Program gotong-royong perdana dan khidmat bantu pss
Program gotong-royong perdana dan khidmat bantu pssProgram gotong-royong perdana dan khidmat bantu pss
Program gotong-royong perdana dan khidmat bantu pss
 
Token Authentication in ASP.NET Core
Token Authentication in ASP.NET CoreToken Authentication in ASP.NET Core
Token Authentication in ASP.NET Core
 
Security Patterns with the WSO2 ESB
Security Patterns with the WSO2 ESBSecurity Patterns with the WSO2 ESB
Security Patterns with the WSO2 ESB
 
Introduction to enterprise search
Introduction to enterprise searchIntroduction to enterprise search
Introduction to enterprise search
 
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web application
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web applicationCĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web application
CĂŽng cỄ vĂ  phÆ°ÆĄng phĂĄp phĂĄt hiện lỗ hổng báșŁo máș­t web application
 
LINQ in C#
LINQ in C#LINQ in C#
LINQ in C#
 
Machine Learning Based Botnet Detection
Machine Learning Based Botnet DetectionMachine Learning Based Botnet Detection
Machine Learning Based Botnet Detection
 
BĂĄo cĂĄo thá»±c táș­p Athena - CNTT
BĂĄo cĂĄo thá»±c táș­p Athena - CNTTBĂĄo cĂĄo thá»±c táș­p Athena - CNTT
BĂĄo cĂĄo thá»±c táș­p Athena - CNTT
 
Servlet sessions
Servlet sessionsServlet sessions
Servlet sessions
 
Pamplet sukan
Pamplet sukanPamplet sukan
Pamplet sukan
 
265991658-Pengantar-PHP-ppt.ppt
265991658-Pengantar-PHP-ppt.ppt265991658-Pengantar-PHP-ppt.ppt
265991658-Pengantar-PHP-ppt.ppt
 
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023 BUKIT GASING.pdf
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023  BUKIT GASING.pdfKERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023  BUKIT GASING.pdf
KERTAS KERJA PROGRAM BELIA BERSAMA KOMUNITI 2023 BUKIT GASING.pdf
 
Web api
Web apiWeb api
Web api
 
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena
BĂĄo CĂĄo Thá»±c Táș­p Tốt Nghiệp TáșĄi Athena
 
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPT
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPTBĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPT
BĂ i 1: GIỚI THIỆU VỀ BáșąO MáșŹT - GiĂĄo trĂŹnh FPT
 
Sql injection
Sql injectionSql injection
Sql injection
 
Rph subjek sukan
Rph subjek sukanRph subjek sukan
Rph subjek sukan
 
TáșĄi sao sá»­ dỄng Odoo
TáșĄi sao sá»­ dỄng OdooTáșĄi sao sá»­ dỄng Odoo
TáșĄi sao sá»­ dỄng Odoo
 

Andere mochten auch

Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS PresentationShawn 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 1Joseaneciencias
 
Tuples, Dicts and Exception Handling
Tuples, Dicts and Exception HandlingTuples, Dicts and Exception Handling
Tuples, Dicts and Exception HandlingPranavSB
 
CSS React Talk
CSS React TalkCSS React Talk
CSS React TalkIvan Kotov
 
The PSF and our community
The PSF and our communityThe PSF and our community
The PSF and our communityYounggun 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 expensesMachinePulse
 
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 MVCjinaldesailive
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMohd 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 MVCMohd Manzoor Ahmed
 
Marketing Plan - Solarium Helios
Marketing Plan - Solarium HeliosMarketing Plan - Solarium Helios
Marketing Plan - Solarium HeliosAnatoly12
 

Andere mochten auch (19)

Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
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
 
Introduction to package in java
Introduction to package in javaIntroduction to package in java
Introduction to package in java
 
Tuples, Dicts and Exception Handling
Tuples, Dicts and Exception HandlingTuples, Dicts and Exception Handling
Tuples, Dicts and Exception Handling
 
Spring AOP
Spring AOPSpring AOP
Spring AOP
 
CSS React Talk
CSS React TalkCSS React Talk
CSS React Talk
 
Java Question & Answers - I
Java Question & Answers - IJava Question & Answers - I
Java Question & Answers - I
 
The PSF and our community
The PSF and our communityThe PSF and our community
The PSF and our community
 
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
 
Indian saops and detergent industry( Nirma)
Indian saops and detergent industry( Nirma) Indian saops and detergent industry( Nirma)
Indian saops and detergent industry( Nirma)
 
Summer training report kcc bank
Summer training report  kcc bankSummer training report  kcc bank
Summer training report kcc bank
 
Greece_Group_B_Final - Rosa
Greece_Group_B_Final - RosaGreece_Group_B_Final - Rosa
Greece_Group_B_Final - Rosa
 
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
 
Recruitment
RecruitmentRecruitment
Recruitment
 
Basic concept of Object Oriented Programming
Basic concept of Object Oriented Programming Basic concept of Object Oriented Programming
Basic concept of Object Oriented Programming
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - Simplified
 
CSS Power Tools
CSS Power ToolsCSS Power Tools
CSS Power Tools
 
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
 
Marketing Plan - Solarium Helios
Marketing Plan - Solarium HeliosMarketing Plan - Solarium Helios
Marketing Plan - Solarium Helios
 

Ähnlich wie Learn html and css from scratch

wd project.pptx
wd project.pptxwd project.pptx
wd project.pptxdsffsdf1
 
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStartIntro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStartScott DeLoach
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and DevelopmentShagor Ahmed
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxAliRaza899305
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxKADAMBARIPUROHIT
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSMario Hernandez
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simpleJagadishBabuParri
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1Heather Rock
 
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStartExtreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStartScott DeLoach
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & csssesharao puvvada
 
Html 5 New Features
Html 5 New FeaturesHtml 5 New Features
Html 5 New FeaturesAta Ebrahimi
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfDakshPratapSingh1
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web DevelopmentRahul Mishra
 
Lab#2 overview of html
Lab#2 overview of htmlLab#2 overview of html
Lab#2 overview of htmlYaowaluck Promdee
 

Ähnlich wie Learn html and css from scratch (20)

wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
 
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStartIntro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
Intro to CSS in MadCap Flare - MadWorld 2016, Scott DeLoach, ClickStart
 
INTRODUCTIONS OF CSS
INTRODUCTIONS OF CSSINTRODUCTIONS OF CSS
INTRODUCTIONS OF CSS
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simple
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStartExtreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
Extreme CSS Techniques - MadWorld Europe 2018, Scott DeLoach, ClickStart
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & css
 
Html 5 New Features
Html 5 New FeaturesHtml 5 New Features
Html 5 New Features
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web Development
 
Lab#2 overview of html
Lab#2 overview of htmlLab#2 overview of html
Lab#2 overview of html
 
Styles.docx
Styles.docxStyles.docx
Styles.docx
 
Styles.docx
Styles.docxStyles.docx
Styles.docx
 

Mehr von 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 WebinarMohd Manzoor Ahmed
 
Learn TypeScript from scratch
Learn TypeScript from scratchLearn TypeScript from scratch
Learn TypeScript from scratchMohd Manzoor Ahmed
 
Learn JavaScript From Scratch
Learn JavaScript From ScratchLearn JavaScript From Scratch
Learn JavaScript From ScratchMohd 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 developersMohd Manzoor Ahmed
 

Mehr von 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
 
Learn TypeScript from scratch
Learn TypeScript from scratchLearn TypeScript from scratch
Learn TypeScript from scratch
 
Angularjs Live Project
Angularjs Live ProjectAngularjs Live Project
Angularjs Live Project
 
Learn JavaScript From Scratch
Learn JavaScript From ScratchLearn JavaScript From Scratch
Learn JavaScript From Scratch
 
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
 
C# simplified
C#  simplifiedC#  simplified
C# simplified
 
Asp net-mvc-3 tier
Asp net-mvc-3 tierAsp net-mvc-3 tier
Asp net-mvc-3 tier
 

KĂŒrzlich hochgeladen

Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 

KĂŒrzlich hochgeladen (20)

Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 

Learn html and css from scratch