3.HTML Tables
3.HTML Tables
What is HTML?
• HTML stands for Hyper Text Markup Language
• HTML is the standard markup language for creating
Web pages
• HTML describes the structure of a Web page
• HTML consists of a series of elements
• HTML elements tell the browser how to display the
content
• HTML elements label pieces of content such as "this is
a heading", "this is a paragraph", "this is a link", etc.
INTRODUCTION
CODE:
Output:
<html>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>
HTML List
Unordered HTML List
Code:-
Output:-
<html>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
Ordered HTML List
Code:- Output:-
<html>
<body>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
OTHER CONCEPTS
HTML HTML5
It didn’t support audio It supports audio and
and video without the use video controls with the use
of flash player support. of <audio> and <video>
tags
PROGRAMMING TIMELINE
Jupiter is the biggest Neptune is the farthest
planet of them all planet from the Sun
iOS HTML5
Python Android
Mercury is the closest Saturn is composed of
planet to the Sun hydrogen and helium
EXERCISE
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas"
width="250" height="25"
style="border:4px solid #00ffc5;">
</canvas>
</body>
</html>
ASSIGNMENT
What language is
used to render 2D
graphics in
HTML5?
___
CREDITS: This presentation template was created by
Slidesgo, incluiding icons by Flaticon, and
infographics & images by Freepik.