HTML
HTML
HTML
Objective
You will learn :
• How HTML5, CSS3 and JavaScript are improving web application development.
• Understand important components of HTML5 documents
• Use HTML5 to create web pages.
• Use Adobe Dreamweaver CS6 Editor .
• HTML Elements
Introduction
The client-side programming technologies used to build web pages and applications
that are run on the client (i.e., in the browser on the user’s device).
You’ll use Hypertext Markup Language 5 (HTML5) and Cascading Style Sheets 3
(CSS3)—the recent releases of HTML and CSS technologies—to add powerful,
dynamic and fun features and effects to web pages and web applications, such as
audio, video, animation, drawing, image manipulation, designing pages for multiple
screen sizes, access to web storage and more.
You’ll learn JavaScript—the language of choice for implementing the client side of
Internet-based applications
There are server-side programming—the applications that respond to requests from
client-side web browsers, such as searching the Internet, checking your Account .
Example PHP, ASP.NET (in both C# and Visual Basic) and JavaServer Faces.
HTML & CSS & JavaScript
<!-- -- >
Elements : html , body , head
example
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
HTML tags
</body>
</html>
Paragraph Element and Heading
<p> </p>
<h1> </h1>
<h2> </h2>
<h3> </h3>
<h4> </h4>
<h5> </h5>
<h6> </h6>
H1 is largest font while h6 is smallest
Font and Alignment tags
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>First Example</title>
</head>
<body>
<! ------------------- this is example one -------------------->
<h2> <center> This is first class </center> </h2>
<h3> You will learn useful things </h3>
<p><font color="red" size="4"> My name is Ali </font> </p>
<u> My ID is 20209990 </u>
</body>
</html>