SlideShare ist ein Scribd-Unternehmen logo
1 von 33
Downloaden Sie, um offline zu lesen
IN A ROCKET
Learn front-end development at rocket speed
Start in 5 min
HTML HTML FUNDAMENTALS
Start in 5 min
IN A ROCKET
Learn front-end development at rocket speed
HTML HTML FUNDAMENTALS
LET'S LEARN HTML!
IN THIS MODULE YOU'LL LEARN:
HTML FUNDAMENTALS: Start in 5 min inarocket.com
What is HTML.

Why HTML is a markup language.

How is its basic structure.

How to create your ïŹrst HTML in 5 minutes.
in a
ROCKET
WHAT IS HTML
Is it a programming language? How is it related to CSS & JavaScript?
inarocket.comHTML FUNDAMENTALS: Start in 5 min
HTML
Content structure + JAVASCRIPT
Content behavior
CSS
Content presentation +
WEB PAGE
inarocket.comHTML FUNDAMENTALS: Start in 5 min
HTMLHyperText Markup Language
HTML is a markup language, not a programming language.
inarocket.comHTML FUNDAMENTALS: Start in 5 min
W3C'S HTML RECOMMENDATIONS TIMELINE
HTML 2.0
1995
HTML 3.2
1997
HTML 4.01
1999 2014
HTML 4.0
1997
inarocket.comHTML FUNDAMENTALS: Start in 5 min
THE W3C RECOMMENDATION TRACK
CANDIDATE RECOMMENDATION
PROPOSED RECOMMENDATION
RECOMMENDATION
LAST CALL
WORKING DRAFT
inarocket.comHTML FUNDAMENTALS: Start in 5 min
HTML5 IS PART OF THE OPEN WEB PLATFORM
SVG
CSS3
XmlHttpRequest
MathML
etc.
WOFF
(Web Fonts)
Geolocation
SOURCE: Open Web Platform by W3C.
in a
ROCKET
HTML MARKUP
What is its goal? How is coded?
inarocket.comHTML FUNDAMENTALS: Start in 5 min
A markup language is used to ‹
structure and deïŹne content semantically.
Soon you will learn how to use CSS to control its presentation.
inarocket.comHTML FUNDAMENTALS: Start in 5 min
<h1>I'm a header</h1>
Element
Opening

Tag
Content Closing

Tag
inarocket.comHTML FUNDAMENTALS: Start in 5 min
<p>I'm a paragraph</p>
Opening

Tag
Content Closing

Tag
Element
in a
ROCKET
BASIC HTML STRUCTURE
What elements are involved? How to use them in your code?
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure HTML code
<head>
Page metadata goes here.
</head>html
DOCTYPE
body
head
</html>
<!DOCTYPE html>
<html>
<body>
Page content goes here.
</body>
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure: DOCTYPE
html
DOCTYPE
body
head
DOCTYPE (Document Type Declaration) tells
the browser / parser what type of document is
processing. Should always be the ïŹrst item of
any HTML ïŹle.
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure: head
html
DOCTYPE
body
head
Use head to include information about the
document (title, language, etc.). But for the
title, head content is not shown to users.
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure: head
<!DOCTYPE html>
<html>
<head>
<title>Page title goes here</title>
</head>
<body>
Page content goes here.
</body>
</html>
Use head to include your page's title.

Browsers will show it in the tab for your page.
Search engines will display that title in their
results.
<head>
<title>Page title goes here</title>
</head>
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure: body
html
DOCTYPE
body
head
Use body to include all the content you want
to show to your users (text, images, links, etc.).
inarocket.comHTML FUNDAMENTALS: Start in 5 min
BASIC HTML STRUCTURE
HTML structure: tree view HTML code
html
head body
<head>
Page metadata goes here.
</head>
</html>
<!DOCTYPE html>
<html>
<body>
Page content goes here.
</body>
in a
ROCKET
YOUR FIRST HTML
How to create your first HTML document in a couple of minutes?
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML
+EDITOR
e.g. Notepad
BROWSER
e.g. Firefox
FOLDERS
Project structure +
21 3
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML
+EDITOR
e.g. Notepad
BROWSER
e.g. Firefox
FOLDERS
Project structure +
21 3
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML: FOLDERS
projectname
css jsimg
Create the folders that will contain the web
project on your computer.

projectname:

‱ img 

‱ css

‱ js
(will hold your site's graphical assets)
(you will use this folder for your site's stylesheets)
(will hold scripts to add interactive features to your site)
Important rules for naming folders and ïŹles.

‱ Never use spaces.

‱ Never use special characters (%, *, +, etc.).

‱ Avoid uppercases.
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML
+EDITOR
e.g. Notepad
BROWSER
e.g. Firefox
FOLDERS
Project structure +
21 3
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML: EDITOR
You can just use any text editor preinstalled in
your computer.
Editor: pre-installed
TextEditNotepad Gedit Sublime Text
Editor: additional
There are other editors but you won't need
their advanced features for this course.
Atom VS Code
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML
+EDITOR
e.g. Notepad
BROWSER
e.g. Firefox
FOLDERS
Project structure +
21 3
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML: BROWSER
You can just use any preinstalled browser in
your computer.
Browser: pre-installed
SafariEdge Firefox
Browser: additional
There are other browsers that you can also
install in your computer.
OperaChrome Firefox
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML: BASIC WORKFLOW
EDITOR
e.g. Notepad
BROWSER
e.g. Firefox
SAVE OPEN
index.html
projectname
inarocket.comHTML FUNDAMENTALS: Start in 5 min
YOUR FIRST HTML: HELLO WORLD!
<!DOCTYPE html>
<html>
<head>
<title>My first HTML page</title>
</head>
<body>
Hello world!
</body>
</html>
READY TO USE CODE
Editor Browser(what you should write) (what you should view)
My ïŹrst HTML page
index.html
Hello world!
Save as index.html Open index.html in your browser
CONGRATULATIONS!
YOU'VE LEARNED:
inarocket.comHTML FUNDAMENTALS: Start in 5 min
What is HTML.

Why HTML is a markup language.

How is its basic structure.

How to create your ïŹrst HTML in 5 minutes.
Learn front-end development at rocket speed
inarocket.com
by miguelsanchez.com
YOU CAN CONTINUE THIS COURSE FOR FREE ON
+ READY TO USE CODE
+ QUIZZES
+ FREE UPDATES
We respect your time‹
No more blah blah videos. Just straight to
the point slides with relevant information.
Ready to use code‹
Real code you can just copy and paste into
your real projects.
Step by step guides‹
Clear and concise steps to build real use
solutions. No missed points.
Learn front-end development at rocket speed
inarocket.com
Start in 5 min
IN A ROCKET
Learn front-end development at rocket speed
HTML HTML FUNDAMENTALS

Weitere Àhnliche Inhalte

Was ist angesagt?

Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Kosie Eloff
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial DenMas Hengky
 
Html5 accessibility
Html5 accessibilityHtml5 accessibility
Html5 accessibilityVirginia DeBolt
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1Heather Rock
 
Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewMohamed Loey
 
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsKeith Borgonia Manatad
 
Hyper Text Marup Language
Hyper Text Marup LanguageHyper Text Marup Language
Hyper Text Marup LanguageAniketPujari
 
Xhtml Part1
Xhtml Part1Xhtml Part1
Xhtml Part1nleesite
 
From a Fireworks Comp to a Genesis Child Theme, Step by Step
From a Fireworks Comp to a Genesis Child Theme, Step by StepFrom a Fireworks Comp to a Genesis Child Theme, Step by Step
From a Fireworks Comp to a Genesis Child Theme, Step by StepEast Bay WordPress Meetup
 
Basic of web design
Basic of web designBasic of web design
Basic of web designSingsys Pte Ltd
 
Web pageassignment
Web pageassignmentWeb pageassignment
Web pageassignmentbeachtch
 
Basic HTML
Basic HTMLBasic HTML
Basic HTMLcoachhahn
 
HTML 101
HTML 101HTML 101
HTML 101lordis89
 
10 Steps to Becoming a WordPress Theme Ninja
10 Steps to Becoming a WordPress Theme Ninja10 Steps to Becoming a WordPress Theme Ninja
10 Steps to Becoming a WordPress Theme NinjaTony Cecala, Ph.D.
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5Nir Elbaz
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some AttributesHIFZUR RAHMAN
 

Was ist angesagt? (20)

Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
 
Html5 accessibility
Html5 accessibilityHtml5 accessibility
Html5 accessibility
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1
 
Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive Overview
 
Html basics
Html basicsHtml basics
Html basics
 
belajar HTML 1
belajar HTML 1belajar HTML 1
belajar HTML 1
 
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and Paragraphs
 
Hyper Text Marup Language
Hyper Text Marup LanguageHyper Text Marup Language
Hyper Text Marup Language
 
Xhtml Part1
Xhtml Part1Xhtml Part1
Xhtml Part1
 
From a Fireworks Comp to a Genesis Child Theme, Step by Step
From a Fireworks Comp to a Genesis Child Theme, Step by StepFrom a Fireworks Comp to a Genesis Child Theme, Step by Step
From a Fireworks Comp to a Genesis Child Theme, Step by Step
 
Basic of web design
Basic of web designBasic of web design
Basic of web design
 
Html 5.0
Html 5.0Html 5.0
Html 5.0
 
Web pageassignment
Web pageassignmentWeb pageassignment
Web pageassignment
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
HTML 101
HTML 101HTML 101
HTML 101
 
10 Steps to Becoming a WordPress Theme Ninja
10 Steps to Becoming a WordPress Theme Ninja10 Steps to Becoming a WordPress Theme Ninja
10 Steps to Becoming a WordPress Theme Ninja
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some Attributes
 
html
htmlhtml
html
 

Ähnlich wie 1- Learn HTML Fundamentals / Start in 5 Minutes

Html basics
Html basicsHtml basics
Html basicsmcatahir947
 
Html tutorial
Html tutorialHtml tutorial
Html tutorialHassan Nasir
 
Html tutorial
Html tutorialHtml tutorial
Html tutorialVinay Vinnu
 
jackylopez.com - Virtual Assistant and Web Development
jackylopez.com - Virtual Assistant and Web Developmentjackylopez.com - Virtual Assistant and Web Development
jackylopez.com - Virtual Assistant and Web DevelopmentJacky Lopez
 
HTML, HTML5,HTML,CSS How To Make Your Own Website
HTML, HTML5,HTML,CSS How To Make Your Own Website HTML, HTML5,HTML,CSS How To Make Your Own Website
HTML, HTML5,HTML,CSS How To Make Your Own Website Er. Rahul Jain
 
Web design in 7 days by waqar
Web design in 7 days by waqarWeb design in 7 days by waqar
Web design in 7 days by waqarWaqar Chodhry
 
HTML course.ppt
HTML course.pptHTML course.ppt
HTML course.pptRyanTeo35
 
The Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsThe Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsLesa Cote
 
A109 base code html
A109 base code   htmlA109 base code   html
A109 base code htmlKpc E-Learning
 
Lesson 01
Lesson 01Lesson 01
Lesson 01Gene Babon
 
Html rahul jain
Html rahul jainHtml rahul jain
Html rahul jainRahul Jain
 

Ähnlich wie 1- Learn HTML Fundamentals / Start in 5 Minutes (20)

Html basics
Html basicsHtml basics
Html basics
 
Class1slides
Class1slidesClass1slides
Class1slides
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
INTRODUCTIONS OF HTML
INTRODUCTIONS OF HTMLINTRODUCTIONS OF HTML
INTRODUCTIONS OF HTML
 
Html.pptx
Html.pptxHtml.pptx
Html.pptx
 
jackylopez.com - Virtual Assistant and Web Development
jackylopez.com - Virtual Assistant and Web Developmentjackylopez.com - Virtual Assistant and Web Development
jackylopez.com - Virtual Assistant and Web Development
 
HTML, HTML5,HTML,CSS How To Make Your Own Website
HTML, HTML5,HTML,CSS How To Make Your Own Website HTML, HTML5,HTML,CSS How To Make Your Own Website
HTML, HTML5,HTML,CSS How To Make Your Own Website
 
Web design in 7 days
Web design in 7 daysWeb design in 7 days
Web design in 7 days
 
Web design in 7 days by waqar
Web design in 7 days by waqarWeb design in 7 days by waqar
Web design in 7 days by waqar
 
HTML course.ppt
HTML course.pptHTML course.ppt
HTML course.ppt
 
HTML
HTMLHTML
HTML
 
The Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment QuestionsThe Technique of Solving Html Assignment Questions
The Technique of Solving Html Assignment Questions
 
A109 base code html
A109 base code   htmlA109 base code   html
A109 base code html
 
Html
HtmlHtml
Html
 
Lesson 01
Lesson 01Lesson 01
Lesson 01
 
Leran html
Leran htmlLeran html
Leran html
 
HTML
HTMLHTML
HTML
 
Html rahul jain
Html rahul jainHtml rahul jain
Html rahul jain
 

Mehr von In a Rocket

3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & itemsIn a Rocket
 
2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / ContextIn a Rocket
 
1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setupIn a Rocket
 
17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / UnitsIn a Rocket
 
16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / BackgroundIn a Rocket
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / ColorIn a Rocket
 
14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / InheritanceIn a Rocket
 
13- Learn CSS Fundamentals / Specificity
13- Learn CSS Fundamentals / Specificity13- Learn CSS Fundamentals / Specificity
13- Learn CSS Fundamentals / SpecificityIn a Rocket
 
12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & groupIn a Rocket
 
11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / CombinatorsIn a Rocket
 
10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elementsIn a Rocket
 
9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classesIn a Rocket
 
8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectorsIn a Rocket
 
Learn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming ConventionLearn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming ConventionIn a Rocket
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionIn a Rocket
 

Mehr von In a Rocket (15)

3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items
 
2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context2- Learn Flexbox & CSS Grid / Context
2- Learn Flexbox & CSS Grid / Context
 
1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup1- Learn Flexbox & CSS Grid / Environment setup
1- Learn Flexbox & CSS Grid / Environment setup
 
17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units17- Learn CSS Fundamentals / Units
17- Learn CSS Fundamentals / Units
 
16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background16- Learn CSS Fundamentals / Background
16- Learn CSS Fundamentals / Background
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color
 
14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance14- Learn CSS Fundamentals / Inheritance
14- Learn CSS Fundamentals / Inheritance
 
13- Learn CSS Fundamentals / Specificity
13- Learn CSS Fundamentals / Specificity13- Learn CSS Fundamentals / Specificity
13- Learn CSS Fundamentals / Specificity
 
12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group12- Learn CSS Fundamentals / Mix & group
12- Learn CSS Fundamentals / Mix & group
 
11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators11- Learn CSS Fundamentals / Combinators
11- Learn CSS Fundamentals / Combinators
 
10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements10- Learn CSS Fundamentals / Pseudo-elements
10- Learn CSS Fundamentals / Pseudo-elements
 
9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes
 
8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors8- Learn CSS Fundamentals / Attribute selectors
8- Learn CSS Fundamentals / Attribute selectors
 
Learn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming ConventionLearn SUIT: CSS Naming Convention
Learn SUIT: CSS Naming Convention
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 

KĂŒrzlich hochgeladen

Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Low Rate Call Girls Kolkata Avani đŸ€Œ 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani đŸ€Œ  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani đŸ€Œ  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani đŸ€Œ 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirtrahman018755
 

KĂŒrzlich hochgeladen (20)

Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Low Rate Call Girls Kolkata Avani đŸ€Œ 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani đŸ€Œ  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani đŸ€Œ  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani đŸ€Œ 8250192130 🚀 Vip Call Girls Kolkata
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 đŸ«Š Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 đŸ«Š Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 đŸ«Š Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 đŸ«Š Vanshika Verma More Our Se...
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
 

1- Learn HTML Fundamentals / Start in 5 Minutes

  • 1. IN A ROCKET Learn front-end development at rocket speed Start in 5 min HTML HTML FUNDAMENTALS Start in 5 min IN A ROCKET Learn front-end development at rocket speed HTML HTML FUNDAMENTALS
  • 2. LET'S LEARN HTML! IN THIS MODULE YOU'LL LEARN: HTML FUNDAMENTALS: Start in 5 min inarocket.com What is HTML. Why HTML is a markup language. How is its basic structure. How to create your ïŹrst HTML in 5 minutes.
  • 3. in a ROCKET WHAT IS HTML Is it a programming language? How is it related to CSS & JavaScript?
  • 4. inarocket.comHTML FUNDAMENTALS: Start in 5 min HTML Content structure + JAVASCRIPT Content behavior CSS Content presentation + WEB PAGE
  • 5. inarocket.comHTML FUNDAMENTALS: Start in 5 min HTMLHyperText Markup Language HTML is a markup language, not a programming language.
  • 6. inarocket.comHTML FUNDAMENTALS: Start in 5 min W3C'S HTML RECOMMENDATIONS TIMELINE HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 2014 HTML 4.0 1997
  • 7. inarocket.comHTML FUNDAMENTALS: Start in 5 min THE W3C RECOMMENDATION TRACK CANDIDATE RECOMMENDATION PROPOSED RECOMMENDATION RECOMMENDATION LAST CALL WORKING DRAFT
  • 8. inarocket.comHTML FUNDAMENTALS: Start in 5 min HTML5 IS PART OF THE OPEN WEB PLATFORM SVG CSS3 XmlHttpRequest MathML etc. WOFF (Web Fonts) Geolocation SOURCE: Open Web Platform by W3C.
  • 9. in a ROCKET HTML MARKUP What is its goal? How is coded?
  • 10. inarocket.comHTML FUNDAMENTALS: Start in 5 min A markup language is used to ‹ structure and deïŹne content semantically. Soon you will learn how to use CSS to control its presentation.
  • 11. inarocket.comHTML FUNDAMENTALS: Start in 5 min <h1>I'm a header</h1> Element Opening Tag Content Closing Tag
  • 12. inarocket.comHTML FUNDAMENTALS: Start in 5 min <p>I'm a paragraph</p> Opening Tag Content Closing Tag Element
  • 13. in a ROCKET BASIC HTML STRUCTURE What elements are involved? How to use them in your code?
  • 14. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure HTML code <head> Page metadata goes here. </head>html DOCTYPE body head </html> <!DOCTYPE html> <html> <body> Page content goes here. </body>
  • 15. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure: DOCTYPE html DOCTYPE body head DOCTYPE (Document Type Declaration) tells the browser / parser what type of document is processing. Should always be the ïŹrst item of any HTML ïŹle.
  • 16. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure: head html DOCTYPE body head Use head to include information about the document (title, language, etc.). But for the title, head content is not shown to users.
  • 17. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure: head <!DOCTYPE html> <html> <head> <title>Page title goes here</title> </head> <body> Page content goes here. </body> </html> Use head to include your page's title. Browsers will show it in the tab for your page. Search engines will display that title in their results. <head> <title>Page title goes here</title> </head>
  • 18. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure: body html DOCTYPE body head Use body to include all the content you want to show to your users (text, images, links, etc.).
  • 19. inarocket.comHTML FUNDAMENTALS: Start in 5 min BASIC HTML STRUCTURE HTML structure: tree view HTML code html head body <head> Page metadata goes here. </head> </html> <!DOCTYPE html> <html> <body> Page content goes here. </body>
  • 20. in a ROCKET YOUR FIRST HTML How to create your first HTML document in a couple of minutes?
  • 21. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML +EDITOR e.g. Notepad BROWSER e.g. Firefox FOLDERS Project structure + 21 3
  • 22. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML +EDITOR e.g. Notepad BROWSER e.g. Firefox FOLDERS Project structure + 21 3
  • 23. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML: FOLDERS projectname css jsimg Create the folders that will contain the web project on your computer. projectname: ‱ img ‱ css ‱ js (will hold your site's graphical assets) (you will use this folder for your site's stylesheets) (will hold scripts to add interactive features to your site) Important rules for naming folders and ïŹles. ‱ Never use spaces. ‱ Never use special characters (%, *, +, etc.). ‱ Avoid uppercases.
  • 24. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML +EDITOR e.g. Notepad BROWSER e.g. Firefox FOLDERS Project structure + 21 3
  • 25. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML: EDITOR You can just use any text editor preinstalled in your computer. Editor: pre-installed TextEditNotepad Gedit Sublime Text Editor: additional There are other editors but you won't need their advanced features for this course. Atom VS Code
  • 26. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML +EDITOR e.g. Notepad BROWSER e.g. Firefox FOLDERS Project structure + 21 3
  • 27. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML: BROWSER You can just use any preinstalled browser in your computer. Browser: pre-installed SafariEdge Firefox Browser: additional There are other browsers that you can also install in your computer. OperaChrome Firefox
  • 28. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML: BASIC WORKFLOW EDITOR e.g. Notepad BROWSER e.g. Firefox SAVE OPEN index.html projectname
  • 29. inarocket.comHTML FUNDAMENTALS: Start in 5 min YOUR FIRST HTML: HELLO WORLD! <!DOCTYPE html> <html> <head> <title>My first HTML page</title> </head> <body> Hello world! </body> </html> READY TO USE CODE Editor Browser(what you should write) (what you should view) My ïŹrst HTML page index.html Hello world! Save as index.html Open index.html in your browser
  • 30. CONGRATULATIONS! YOU'VE LEARNED: inarocket.comHTML FUNDAMENTALS: Start in 5 min What is HTML. Why HTML is a markup language. How is its basic structure. How to create your ïŹrst HTML in 5 minutes.
  • 31. Learn front-end development at rocket speed inarocket.com by miguelsanchez.com YOU CAN CONTINUE THIS COURSE FOR FREE ON + READY TO USE CODE + QUIZZES + FREE UPDATES
  • 32. We respect your time‹ No more blah blah videos. Just straight to the point slides with relevant information. Ready to use code‹ Real code you can just copy and paste into your real projects. Step by step guides‹ Clear and concise steps to build real use solutions. No missed points. Learn front-end development at rocket speed inarocket.com
  • 33. Start in 5 min IN A ROCKET Learn front-end development at rocket speed HTML HTML FUNDAMENTALS