HTML is a hyper text
markup language which is used to build web pages. Web pages consist of
different HTML tags which describe different parts of document and content in a
webpage.
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 |
0 comments:
Post a Comment