Start A Basic HTML Web Page
You will here a lot of designers talk about "tags" when you come to web design and build. It may of course put you off before you start but it really is quite simple to understand when you are talking about web page construction.Let Start at The BeginningWith the HTML Tag
<html> Opens the Tag
</html> Closes the tag
And of course you need a matching set of virtually every tage you create. One to open and one to close.
Next comes the Body Tag
Directly under the first <HTML> Tag you would have
<body> Which opens the tag
and directly before the second </HTML> tag you would have
</body> Which closes the tag
So in other words, you page now looks like this:
<html>
<body>
</body>
</html>
From here, everything you put into your webpage that you want your site visitor to see, will go inbetween the two <body> TAGS </body>
For example
<html>
<body>This is a piece of text that I want to appear on my webpage.
</body>
</html>
To see the next tutorial which looks at basic layout go to HTML Basics In Web Design Page Two.
Content By Web Connections - Web Design - Software Design
No comments:
Post a Comment