Wednesday 12 November 2014

My First Web Page

Structure of the Problem Requirements 

Hi Friends! Welcome to LEP 's HTML Tutorial. HTML is a hyper text markup language which is used to build web pages. Web pages consist of different HTML tags which describe different document and content in a webpage. Here we placed a small piece of html code with its output and description. The First two lines define the <!DOCTYPE> which help the browser to display the webpage correctly. After this head (title define in head )start which labeled the page in the address bar. The body tag define the actual body of the webpage. All the others tags like heading<h1> and paragraph<p> are defined here. 

Note : We checked codes in W3 Validator before Uploading. 

Source Code   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Programming Hub </title>
</head>
 <body>
 <h1> LEP Tutorials </h1>
<p>This is our HTML tutorial. </p>
 <p>We will learn in this tutorial how to build web pages.</p>
 </body>
 </html>

Output of the Code

HTML Tags Description
HTML Tags Description 

Share it Please
asad

About Author!

Asad Niazi is Software Engineer , Programmer, Web Developers and a young mentor of Tech Solutions Desk and Blogging Solutions . Asad Love to writes about Technology, Programming, Blogging and make money online.

0 comments:

Post a Comment