Lesson for Learning the Basics of HTML

Mar 19
22:00

2004

Lawrence Roth

Lawrence Roth

  • Share this article on Facebook
  • Share this article on Twitter
  • Share this article on Linkedin

For ... who are ... in learning basic Web ... by using HTML ... Markup ... here are some helpful HTML tags to start ... with. Listed below is the basic framewo

mediaimage

For beginners who are interested in learning basic Web development by using HTML (HyperText Markup Language) here are some helpful HTML tags to start practicing with. Listed below is the basic framework you will need to create an HTML page:


< itle><br></head><br><body><br></body><br></html><br><br>This framework is the foundation on which you will be able to build your HTML page. Remember that a beginning tag will have this format <name of tag> and the ending tag will have this format </name of tag>.<br><br>The <title> tags are where you will place the title of your page. The title appears on the title bar at the top of a Web browser. Here is an example:<br><br><title>Rothline Entertainment >> Offers Computer and Video Games and PC Software< itle><br><br>The title tags will always be between the beginning and ending <head> tags.<br><br>The <body> tags are where the Web page content will go.<br><br>Between the <body> tags the most commonly used tags are:</p> These are the paragraph tags.<br><h1></h1> Heading tag 1 creates largest sized heading<br><h2></h2> <br><h3></h3> <br><h4></h4> <br><h4></h4> <br><h5></h5> <br><h6></h6> Heading tag 6 creates smallest sized heading<br><br>These are the basics,<a href="https://www.articlesfactory.com/articles/html/lesson-for-learning-the-basics-of-html.html"><img src="https://www.articlesfactory.com/pic/x.gif" width="1" height="1" alt="Lesson for Learning the Basics of HTML Articles" border="0" style="display: none;"></a> so all you need to do is use a text editor like Notepad and insert your HTML and save the file as webpage.html and you have created your first HTML page. Here is an example:<br><br><html><br><head><br><title>Rothline Entertainment >> Offers Computer and Video Games and PC Software < itle><br></head><br><body><br><h1>Playstation 1 Games available for discount prices<h1>Ace Combat 4 A World In Conflict An Ace Pilot Ready to Take Command!! Strap yourself to the cockpit of one of 18 ferocious Jet Fighters and prepare for supersonic excitement in 18 Adrenaline-soaked missions. </p>Baldur's Gate: Dark Alliance Experience the massively popular world of Baldur's Gate as never before! Dark Alliance thrusts you into an epic adventure filled with intense action, intricate puzzles and sinister intrigue: where your mastery of cold steel and devastating spells is the only thing between you and ultimate evil. </p><br><br></body><br></html><br><br>Now go practice some and see what you can create with basic HTML.