![]() |
| Home | | | Contact Us | | | Security | | | Affiliates | | | RSS |
Html is a pretty simple language to learn, in this tutorial you will learn the basics of web design. For more information go to w3c.org
All html documents should begin with this tag, <html> and all tags should end with a forward slash / so the end of the document should have an ending </html> in between the html tags is the start head tag, then the title tags then the closing head tag. Next is the body tags, these are placed after the closing head tag but before the closing html tag. There is the most basic html page that you can make..
Tag ReferencesHeading sizesAlignmentFormatting textIdentification(optional)Moving textParagraphTablesFormsAnchor TagImages[Home] [page2-CSS] [page3-JavaScript-Part1] [page4-JavaScript-Part2] [page5-PHP] |
All tags must have closing tags except for image tags and certain form tags like submit and reset buttons. All fields can use formatting tags, alignment tags etc.. <html> <head> <title>TutorialCode-Created By:Gh0$7</title> </head> <body> <h1>Tutorial Code Converted to a Web Page</h1> <marquee behavior="scroll" direction="right" scrollamount="10"> WebDevelopmentSolutions! <img src="http://www.webdevelopmentsolutions.org/SomePicHere.jpg alt="SomePicHere" /> </marquee> <table border="0" align="center" cols="3" rows="4"> <tr> <td> <h2><em><Form in table example></em></h2> <form action="mySubmit.php" method="post"> Username:<input type="text" name="uname" id="uname" /><br /> Password:<input type="password" name="passwd" id="passwd" /><br /><br /> <input type="submit" name="submit" value="submit" /> <input type="reset" name="reset" value="reset" /> </form> </td> </tr> </table> <a href="http://www.webdevelopmentsolutions.org/contact.php">WebDev</a> </body> </html> Tutorial Code Converted to a Web Page
|