SlideShare a Scribd company logo
1 of 11
Introduction to HTML
Meghan Frisco
mfrisco@computermentors.org
www.computermentors.org
What is HTML?
• Web pages are built using a simple language called HTML
• HTML = HyperText Markup Language
• HTML “marks” content so the web browser knows what to do with it.
• Web Browser = Internet Explorer, Google Chrome, Firefox, Safari, etc…
• HTML is easy to identify because it uses tags, enclosed in angled
brackets
• Open Tag: <tag>
• Closing Tag: </tag>
• In Use: <tag> Your Content </tag>
THE CHECKLIST
 A computer
Any web browser
A text-editor (Notepad)
BEGIN YOUR FIRST WEB PAGE
1. Open Notepad
2. Type “Hello World”
3. Go to File -> “Save As”
4. Name the file “index.html”
5. Click Save
6. Keep Notepad open!
VIEW YOUR FIRST WEB PAGE
1. Locate where you saved “index.html”
• The file is probably located in “Documents”
2. Double-click your index.html file
3. The file will load in your default web browser.
4. Keep the web browser open!
USING HTML FOR THE FIRST TIME
1. Click back to your Notepad
file.
2. Use the example shown to add
content and HTML tags to
your web page.
• Don’t be afraid to put your own
text!
3. Go to File – Save
4. Refresh your browser window.
• (F5) is a shortcut for refresh!
WHAT DOES THIS STUFF MEAN?
1. !DOCTYPE HTML establishes to your
browser that you will be writing a
document that contains HTML.
2. All of your HTML will be enclosed
within the <html></html> tags.
3. The <head></head> tags contain
information your browser needs to load
first. This becomes more important
later on.
4. The <body></body> tags contain the
main content of your page – all the
headings, information, and basically
anything you want to be visible.
WHAT DID IT DO?
1. <title>Shows in the title bar or tab</title>
2. <h1>Biggest Heading Text</h1>
3. <h2>Bigger Heading Text</h2>
4. <h3>Big Heading Text</h3>
5. <h4>Small Heading Text</h4>
6. <h5>Smaller Heading Text</h5>
7. <h6>Smallest Heading Text</h6>
8. <p>Paragraph Text</p>
ADDING AN IMAGE
1. Use a free image site like Pexels.com to find an
image you love.
2. Right-click on the image and “Copy Image
Address”
3. Click back to your Notepad file.
4. Use the example shown to add an image to your
web page.
• <img src=“______”>
• Paste your image address in place of the ______
• “s must be used around the address.
5. Go to File – Save
6. Refresh your browser window.
• (F5) is a shortcut for refresh!
ADDING A LINK
1. Links are used to navigate to
different pages within a web site.
2. Follow the example…
• <a href=“#”>My Link Text</a>
• The # can be replaced with an actual
web address (URL), such as
http://www.google.com
• The # symbol redirects you to the same
page you’re already on.
3. Save the index.html file
4. Refresh your browser!
Supplemental Learning:
• Check out General Assembly’s awesome (free) tutorial:
• http://www.dash.generalassemb.ly
• Notepad is just a stepping stone! Try a different text-editor:
• Brackets, Sublime, Microsoft Visual Studio Code, Cloud 9, Atom…and many
more!
• If you’re very serious and ready to commit a lot of time to
learning every aspect of web development, look into
FreeCodeCamp.com

More Related Content

What's hot (20)

Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html 5
Html 5Html 5
Html 5
 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML5
HTML5 HTML5
HTML5
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
HTML basics
HTML basicsHTML basics
HTML basics
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpage
 
Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpoint
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html intro
Html introHtml intro
Html intro
 
HTML email design and usability
HTML email design and usabilityHTML email design and usability
HTML email design and usability
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
 
Basics of HTML
Basics of HTMLBasics of HTML
Basics of HTML
 
Css notes
Css notesCss notes
Css notes
 
Html training slide
Html training slideHtml training slide
Html training slide
 
HTML/CSS Lecture 1
HTML/CSS Lecture 1HTML/CSS Lecture 1
HTML/CSS Lecture 1
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 

Viewers also liked

Viewers also liked (20)

Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
Knockout (support slides for presentation)
Knockout (support slides for presentation)Knockout (support slides for presentation)
Knockout (support slides for presentation)
 
Ejercicio final unidad 2
Ejercicio final unidad 2Ejercicio final unidad 2
Ejercicio final unidad 2
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Knockout js
Knockout jsKnockout js
Knockout js
 
Knockout.js
Knockout.jsKnockout.js
Knockout.js
 
Knockout JS Development - a Quick Understanding
Knockout JS Development - a Quick UnderstandingKnockout JS Development - a Quick Understanding
Knockout JS Development - a Quick Understanding
 
Knockout js
Knockout jsKnockout js
Knockout js
 
Knockoutjs
KnockoutjsKnockoutjs
Knockoutjs
 
Knockout js
Knockout jsKnockout js
Knockout js
 
Knockout js
Knockout jsKnockout js
Knockout js
 
An introduction to KnockoutJS
An introduction to KnockoutJSAn introduction to KnockoutJS
An introduction to KnockoutJS
 
Knockout js (Dennis Haney)
Knockout js (Dennis Haney)Knockout js (Dennis Haney)
Knockout js (Dennis Haney)
 
Knockout
KnockoutKnockout
Knockout
 
01. session 01 introduction to html
01. session 01   introduction to html01. session 01   introduction to html
01. session 01 introduction to html
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Knockout Introduction
Knockout IntroductionKnockout Introduction
Knockout Introduction
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Fundaments of Knockout js
Fundaments of Knockout jsFundaments of Knockout js
Fundaments of Knockout js
 

Similar to Introduction to HTML

Similar to Introduction to HTML (20)

Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 
Lecture 2 - HTML Basics
Lecture 2 - HTML BasicsLecture 2 - HTML Basics
Lecture 2 - HTML Basics
 
Html and its tags
Html and its tagsHtml and its tags
Html and its tags
 
Rd.Html
Rd.HtmlRd.Html
Rd.Html
 
Class1slides
Class1slidesClass1slides
Class1slides
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Html lesson1 5
Html lesson1 5Html lesson1 5
Html lesson1 5
 
HTML 5 Tutorial
HTML 5 TutorialHTML 5 Tutorial
HTML 5 Tutorial
 
Handout1 intro to html
Handout1 intro to htmlHandout1 intro to html
Handout1 intro to html
 
Web development basics
Web development basicsWeb development basics
Web development basics
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Web htmlt1
Web   htmlt1Web   htmlt1
Web htmlt1
 
How to Make HTML and CSS Files
How to Make HTML and CSS FilesHow to Make HTML and CSS Files
How to Make HTML and CSS Files
 
Html intro for IML 295, week 11
Html intro for IML 295, week 11Html intro for IML 295, week 11
Html intro for IML 295, week 11
 
What is HTML5
What is HTML5What is HTML5
What is HTML5
 
Dreamweaver cs6
Dreamweaver cs6Dreamweaver cs6
Dreamweaver cs6
 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginners
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 

Recently uploaded

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 

Recently uploaded (20)

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 

Introduction to HTML

  • 1. Introduction to HTML Meghan Frisco mfrisco@computermentors.org www.computermentors.org
  • 2. What is HTML? • Web pages are built using a simple language called HTML • HTML = HyperText Markup Language • HTML “marks” content so the web browser knows what to do with it. • Web Browser = Internet Explorer, Google Chrome, Firefox, Safari, etc… • HTML is easy to identify because it uses tags, enclosed in angled brackets • Open Tag: <tag> • Closing Tag: </tag> • In Use: <tag> Your Content </tag>
  • 3. THE CHECKLIST  A computer Any web browser A text-editor (Notepad)
  • 4. BEGIN YOUR FIRST WEB PAGE 1. Open Notepad 2. Type “Hello World” 3. Go to File -> “Save As” 4. Name the file “index.html” 5. Click Save 6. Keep Notepad open!
  • 5. VIEW YOUR FIRST WEB PAGE 1. Locate where you saved “index.html” • The file is probably located in “Documents” 2. Double-click your index.html file 3. The file will load in your default web browser. 4. Keep the web browser open!
  • 6. USING HTML FOR THE FIRST TIME 1. Click back to your Notepad file. 2. Use the example shown to add content and HTML tags to your web page. • Don’t be afraid to put your own text! 3. Go to File – Save 4. Refresh your browser window. • (F5) is a shortcut for refresh!
  • 7. WHAT DOES THIS STUFF MEAN? 1. !DOCTYPE HTML establishes to your browser that you will be writing a document that contains HTML. 2. All of your HTML will be enclosed within the <html></html> tags. 3. The <head></head> tags contain information your browser needs to load first. This becomes more important later on. 4. The <body></body> tags contain the main content of your page – all the headings, information, and basically anything you want to be visible.
  • 8. WHAT DID IT DO? 1. <title>Shows in the title bar or tab</title> 2. <h1>Biggest Heading Text</h1> 3. <h2>Bigger Heading Text</h2> 4. <h3>Big Heading Text</h3> 5. <h4>Small Heading Text</h4> 6. <h5>Smaller Heading Text</h5> 7. <h6>Smallest Heading Text</h6> 8. <p>Paragraph Text</p>
  • 9. ADDING AN IMAGE 1. Use a free image site like Pexels.com to find an image you love. 2. Right-click on the image and “Copy Image Address” 3. Click back to your Notepad file. 4. Use the example shown to add an image to your web page. • <img src=“______”> • Paste your image address in place of the ______ • “s must be used around the address. 5. Go to File – Save 6. Refresh your browser window. • (F5) is a shortcut for refresh!
  • 10. ADDING A LINK 1. Links are used to navigate to different pages within a web site. 2. Follow the example… • <a href=“#”>My Link Text</a> • The # can be replaced with an actual web address (URL), such as http://www.google.com • The # symbol redirects you to the same page you’re already on. 3. Save the index.html file 4. Refresh your browser!
  • 11. Supplemental Learning: • Check out General Assembly’s awesome (free) tutorial: • http://www.dash.generalassemb.ly • Notepad is just a stepping stone! Try a different text-editor: • Brackets, Sublime, Microsoft Visual Studio Code, Cloud 9, Atom…and many more! • If you’re very serious and ready to commit a lot of time to learning every aspect of web development, look into FreeCodeCamp.com