HTML5 CHEAT SHEET 
WHAT IS HTML? 
● HTML stands for Hypertext Markup Language.  
● It was initially released in 1993.  
● HTML structures the webpages that we visit online with paragraphs, headings, links, 
images, and more. 
● However, it doesn’t style the webpage with colors, sizing, borders, etc. (That’s what 
cascading style sheets are for, or CSS.) 
● You can think of HTML like the human face, and CSS is like makeup, hair styles, etc. 
WHAT’S NEW IN HTML5? 
HTML5 has been in development since 2007. However, it takes awhile to fully implement. 
Meaning many sites are not yet using it. The W3C (World Wide Web Consortium) is the 
organization behind setting the protocols and guidelines of HTML5. Don’t worry too much 
about this. 
Just know that HTML5 is the future of the web. It was designed to deliver rich content 
without the need for plugins. HTML5 can also deliver everything from graphics to music. 
Even better, HTML5 is cross-platform. It has been created to work on PCs, tablets, 
smartphones and even smart TVs. 
 
   
 
L E A R N T O C O D E W I T H . M E            1 
HTML5 CHEAT SHEET 
IMPORTANT: 
To create HTML documents, one must use a plain text editor. (Something like Microsoft 
Word, or Google Docs, will not work.) HTML files are saved with the extension .html. 
POPULAR TEXT EDITORS INCLUDE: 
● Sublime Text 
● Brackets 
● Atom 
● Text Wrangler 
● Notepad ++ 
You can learn more about text editors here.  
 
 
   
 
L E A R N T O C O D E W I T H . M E            2 
 
HTML5 CHEAT SHEET 
BASIC HTML TAGS (A REFRESHER) 
HEADINGS 
● Heading tags are used to define 
HTML headings 
● Tags go from <h1> through <h6> 
● <h1> has the most importance and 
<h6> is the least 
  < h1 >page title</ h1 > 
< h2 >page subtitle</ h2 > 
< h3 >subtitle with less 
importance than h2< h3 > 
< h4 >heading with less 
importance than h3</ h4 > 
< h5 >less important than h4</ h5 > 
< h6 >less important than h5</ h6 > 
PARAGRAPHS 
● The <p> tag defines a paragraph 
  < p >My paragraph text goes 
between “p” tags, like this. 
</ p > 
LINKING 
● The <a> tag is used for creating a URL 
link 
● Links take you from one page to 
another 
  < a  href = ”http:// 
learntocodewith.me” >This is a 
link</ a > 
IMAGES 
● The <img> tag defines an image in an 
HTML page 
● Images are not technically inserted 
into an HTML page, images are linked 
to HTML pages 
● The <img> tag creates a holding 
space for the referenced image 
  < img  src = ”girl­coding.png” 
alt = ”Girl Coding” > 
 
L E A R N T O C O D E W I T H . M E            3 
 
HTML5 CHEAT SHEET 
NEW HTML5 TAGS 
NEW MEDIA ELEMENTS 
 
TAG  DESCRIPTION 
<audio>  Defines sound or music content 
<embed>  Defines containers for external applications (like plug-ins) 
<source>  Defines sources for <video> and <audio> 
<track>   Defines tracks for <video> and <audio> 
<video>  Defines video or movie content 
 
NEW CANVAS TAG 
 
TAG  DESCRIPTION 
<canvas>  Defines graphic drawing using Javascript 
 
NEW FORM ELEMENTS 
 
TAG  DESCRIPTION 
<datalist>  Defines predefined options for input controls 
<keygen>  Defines a key-pair generator field (for forms) 
<output>  Defines the result of a calculation 
 
 
L E A R N T O C O D E W I T H . M E            4 
 
HTML5 CHEAT SHEET 
NEW STRUCTURAL ELEMENTS 
 
TAG  DESCRIPTION 
<article>  Defines an Article in the document 
<aside>  Defines content aside from the page content 
<bdi>  Defines part of text that might be formatted in a different 
direction from other text outside it 
<details>   Defines additional details that the user can view or hide 
<dialog>  Defines a dialog box or window 
<figcaption>  Defines a caption for a <figure> element 
<figure>  Defines self-contained content like illustrations, diagrams, 
etc. 
<footer>  Defines a footer for the document or a section 
<header>  Defines a header for the document or a section 
<main>  Defines the main content of a document 
<mark>  Defines marked or highlighted text 
<menuitem>  Defines menu item that user can invoke from a pop-up menu 
<meter>  Defines a scalar measurement within a known range 
<nav>  Defines navigation links in the document 
<progress>  Defines the progress of a task 
<rp>  Defines an explanation of characters (for East Asian 
typography) 
<ruby>  Defines a ruby annotation (for East Asian Typography) 
<section>  Defines a section in the document 
<summary>  Defines a visible heading for a <details> element 
<time>  Defines a date/time 
<wbr>  Defines a possible line-break 
 
L E A R N T O C O D E W I T H . M E            5 
 
HTML5 CHEAT SHEET 
HTML5 STRUCTURAL ELEMENTS 
HOW A DOCUMENT IS LAID OUT STRUCTURALLY  
 
 
L E A R N T O C O D E W I T H . M E            6 
 
HTML5 CHEAT SHEET 
 
NO LONGER SUPPORTED HTML TAGS 
 
TAG  DESCRIPTION 
<acronym>  Used to define an embedded acronym 
<applet>  Used to define embedded applet 
<basefont>  Define default font color, font size, or font family for all the 
document 
<big>   Used for making text bigger 
<center>  Used to center and align text 
<dir>  Used to define directory list 
<font>  Used to define font face, size and font color 
<frameset>  Defined frameset, which organized multiple windows 
<noframes>  Used to display text on browsers that could not handle 
frames 
<s>, <strike>  Defined strike through text 
<tt>  Used to define teletype text 
<u>  Used to define underlined text 
 
 
   
 
L E A R N T O C O D E W I T H . M E            7 
 
HTML5 CHEAT SHEET 
ADDITIONAL HTML5 RESOURCES 
UDEMY 
“1 Hour HTML” ($) 
TEAM TREEHOUSE 
“Introduction to HTML and CSS” ($) 
SITEPOINT 
“A Basic HTML5 Template” 
SHAYHOWE.COM 
“Learn to Code HTML & CSS - Develop & Style Websites” 
HTML5 ROCKS 
“HTML5 Resources - A Google Project” 
W3C VALIDATOR 
“W3C Markup Validation Service” 
 
   
 
L E A R N T O C O D E W I T H . M E            8 
 
HTML5 CHEAT SHEET 
 
 
 
 
 
 
 
Want to learn to code 
with other newbies? 
  
 
 
L E A R N T O C O D E W I T H . M E            9 
 

More Related Content

PDF
Technology for Presentations
PPTX
HTML INTRO.pptx
PPT
HTML 5 Complete Reference
PPT
1._Introduction_to_HTML5 les fonction et les balises
PPT
1._Introduction_tyytggyyyyy666o_HTML5.ppt
PPT
HTML_new_one is a ppt in markup language
PPT
1._Introduction_to_HTML5 Web Designing.ppt
PPT
1._Introduction_to_HTML5 powerpoint presentation
Technology for Presentations
HTML INTRO.pptx
HTML 5 Complete Reference
1._Introduction_to_HTML5 les fonction et les balises
1._Introduction_tyytggyyyyy666o_HTML5.ppt
HTML_new_one is a ppt in markup language
1._Introduction_to_HTML5 Web Designing.ppt
1._Introduction_to_HTML5 powerpoint presentation

Similar to HTML5 cheat sheet (20)

PPT
Introduction to html55
PPT
1. Introduction to HTML5.ppt
PPT
1._Introduction_to_HTML5[1].MCA MODULE 1 NOTES
PPT
Introduction to html5
PPT
Introduction to HTML5
PPT
1. introduction to html5
PPT
HTML5_3.ppt
DOCX
Report html5
PPT
Html5
PPT
PPT
Html5
PPT
PPT
PPT
PPT
PPTX
Chapter 2 introduction to html5
PPTX
HTML 5 Fundamental
PPTX
HTML Webinar Class
DOC
HTML5 vs Flash : Term paper at VGSOM, IIT Kharagpur
PPTX
Learn HTML and HTML5
Introduction to html55
1. Introduction to HTML5.ppt
1._Introduction_to_HTML5[1].MCA MODULE 1 NOTES
Introduction to html5
Introduction to HTML5
1. introduction to html5
HTML5_3.ppt
Report html5
Html5
Html5
Chapter 2 introduction to html5
HTML 5 Fundamental
HTML Webinar Class
HTML5 vs Flash : Term paper at VGSOM, IIT Kharagpur
Learn HTML and HTML5
Ad

More from Tan Le (20)

PDF
Mega GS form tuyen dung part time
PDF
25 Google Search Hacks to Make Life Easier
PDF
Web Animation using JavaScript: Develop & Design (Develop and Design)
PDF
Dap an VIE1014 Chinh tri
PDF
Plain english for lawyers
PPTX
Slide seo onpage
PPT
Mkt consumer insights-thau-hieu-nguoi-tieu-dung
PPT
Kynangdienthoai 130315020458-phpapp02
PPT
Ky nang-ban-hang-telesale-141214215434-conversion-gate02
PPTX
E9 preposition
PPT
Mkt quy trinh marketing insight
PPT
Introduce man1042
PDF
Soan bai MAN1042 Nhan su
PDF
Dap an MAR2032 Quang cao
PDF
Giao trinh tu hoc tieng han cho moi nguoi phan trung cap - le hoang phuong & ...
PDF
Giao trinh tu hoc tieng han cho moi nguoi phan so cap - le hoang phuong & nho...
PDF
Giao trinh tu hoc tieng han cho moi nguoi phan nang cao - le hoang phuong & n...
PDF
Dap an VIE1024 Phap luat
DOCX
Dap an FIN102 Tai chinh doanh nghiep
DOCX
Dap an MAR2042 Lap ke hoach marketing
Mega GS form tuyen dung part time
25 Google Search Hacks to Make Life Easier
Web Animation using JavaScript: Develop & Design (Develop and Design)
Dap an VIE1014 Chinh tri
Plain english for lawyers
Slide seo onpage
Mkt consumer insights-thau-hieu-nguoi-tieu-dung
Kynangdienthoai 130315020458-phpapp02
Ky nang-ban-hang-telesale-141214215434-conversion-gate02
E9 preposition
Mkt quy trinh marketing insight
Introduce man1042
Soan bai MAN1042 Nhan su
Dap an MAR2032 Quang cao
Giao trinh tu hoc tieng han cho moi nguoi phan trung cap - le hoang phuong & ...
Giao trinh tu hoc tieng han cho moi nguoi phan so cap - le hoang phuong & nho...
Giao trinh tu hoc tieng han cho moi nguoi phan nang cao - le hoang phuong & n...
Dap an VIE1024 Phap luat
Dap an FIN102 Tai chinh doanh nghiep
Dap an MAR2042 Lap ke hoach marketing
Ad

Recently uploaded (20)

PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PPT
Module 1.ppt Iot fundamentals and Architecture
PPTX
Chapter 5: Probability Theory and Statistics
PDF
CloudStack 4.21: First Look Webinar slides
PDF
A proposed approach for plagiarism detection in Myanmar Unicode text
PDF
UiPath Agentic Automation session 1: RPA to Agents
PPT
Geologic Time for studying geology for geologist
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PDF
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
PDF
Consumable AI The What, Why & How for Small Teams.pdf
PPTX
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION
PDF
Credit Without Borders: AI and Financial Inclusion in Bangladesh
PPTX
Build Your First AI Agent with UiPath.pptx
PDF
Comparative analysis of machine learning models for fake news detection in so...
PDF
The influence of sentiment analysis in enhancing early warning system model f...
PDF
Flame analysis and combustion estimation using large language and vision assi...
Convolutional neural network based encoder-decoder for efficient real-time ob...
sustainability-14-14877-v2.pddhzftheheeeee
Module 1.ppt Iot fundamentals and Architecture
Chapter 5: Probability Theory and Statistics
CloudStack 4.21: First Look Webinar slides
A proposed approach for plagiarism detection in Myanmar Unicode text
UiPath Agentic Automation session 1: RPA to Agents
Geologic Time for studying geology for geologist
Final SEM Unit 1 for mit wpu at pune .pptx
Getting started with AI Agents and Multi-Agent Systems
Zenith AI: Advanced Artificial Intelligence
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
Consumable AI The What, Why & How for Small Teams.pdf
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION
Credit Without Borders: AI and Financial Inclusion in Bangladesh
Build Your First AI Agent with UiPath.pptx
Comparative analysis of machine learning models for fake news detection in so...
The influence of sentiment analysis in enhancing early warning system model f...
Flame analysis and combustion estimation using large language and vision assi...

HTML5 cheat sheet