Web Technologies
Structure of HTML & HTML Elements
Smt.M.Jeevana Sujitha
Assistant Professor
Department of Computer Science and Engineering
SRKR Engineering College, Bhimavaram, A.P. - 534204
OBJECTIVES
The Objectives of this lecture are
Structure of HTML
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html
Structure of HTML
Example:
<html>
<head>
<title> sample program</title>
</head>
<body>
Welcome to HTML World
</body>
</html>
Structure of HTML
HTML Elements & Attributes
HTML Elements:
Syntax:
<tag name> content </tag name> Example:
<body> welcome to html world </body>
HTML Elements & Attributes
HTML Attributes:
THANK YOU