![]() |
Free Content This Good Should Be A Sin
|
||||
| Article Devil : Webmasters : Html » How To Create a Website with HTML | Welcome, Guest |
![]() ![]() |
![]() |
How To Create a Website with HTML
The head consists of the webpage title, meta tags (which are used so that search engines can find your site), and other things that are hidden to the visitors of the site because they don't really need to know them. The body is the main part of a website. This is the part where the webmaster codes what he or she wants the visitor to see. A sample head might look something like this: <head> <title>My website</title> </head> A sample body looks like this: <body> <p>This website is about ....</p> </body> Notice that the codes have "<" and ">". The word inside the symbols "<" and ">" tells the browser what you want for them to do. These are called tags. So <title>My website</title> means that you are telling the browser that you want the title of your website to be "My website". Another thing you should notice is that the beginning tag (such as <head>) does not contain a slash "/" while the ending tag does. One thing to remember is that you must put html tags at your code. Now if you combine the html tags, the head part, and the body part, you'll get this code: <html> <head> <title>My website</title> </head> <body> <p>This website is about ....</p></body> </html> Note about spaces: It does not matter if there are spaces between tags. For example, in the code above, there are spaces between "</title>" and "</head" while there are no spaces between "</p>" and "</body>". Below are some of the common tags that are used by webmasters: <p> - tells the browser to start a paragraph and display the words inside the code <br> - creates a break which means that the next words will be displayed on a line below instead on displaying on the current line. <img source = "myimage.jpg"> - display myimage.jpg on the browser. If you would like to learn HTML using interactive tutorials, visit <a href="http://csshtmltutorial.com/">CSSHTMLTutorial.com</a> About the Author
Jose Valdez is the webmaster of <a href="http://csshtmltutorial.com/">CSS HTML Tutorial</a>.com and
<a href="http://freecsstutorial.com/">Free CSS Tutorial</a>.com Source: Article Devil Comments
No comments posted.
Add Comment You do not have permission to comment. If you log in, you may be able to comment. Latest Articles In This CategoryGet HTML Code
Remember: The article body, title, author bio and links may not be changed or removed. By publishing this article, you agree to all the terms in our our Terms of Service.
|
![]() |
Stats
Articles: 6343
Categories: 176 Members: 7704 Online: 21 |