Building a Web Page From Scratch
Delete all the html code you have for your web page if you want to start your page from scratch!
To start a web page from scratch with html insert this code:
<html>
<head>
</head>
<body>
</body>
</html>
After you have done this, you can look at the html tips provided at this web page and use them between the
<body>
and
</body>
tags.
I suggest looking at this tip first.
Remember that to make a link, you use this code:
<a href="http://htmltips.blogspot.com">Link</a>
The link will look like this:
Link
Also, you may want to look at the tips about images on this site.
Also, to make new lines, look at this tip.
NOTE: Some tips may need to go between the <head> and </head> . For example, all tips which use meta go in the head.
To start a web page from scratch with html insert this code:
<html>
<head>
</head>
<body>
</body>
</html>
After you have done this, you can look at the html tips provided at this web page and use them between the
<body>
and
</body>
tags.
I suggest looking at this tip first.
Remember that to make a link, you use this code:
<a href="http://htmltips.blogspot.com">Link</a>
The link will look like this:
Link
Also, you may want to look at the tips about images on this site.
Also, to make new lines, look at this tip.
NOTE: Some tips may need to go between the <head> and </head> . For example, all tips which use meta go in the head.
0 Comments:
Post a Comment
<< Home