first write on page
<html>
the every thing which is done on your web page will be inside these tags you are actually defining the body of html </html>
this will be the <> starting tag and </> this will be the ending tag to complete your task. Each starting tag must have an ending tag don't forget it. so <title>My web page</title> this title MyWeb Page will not appear on your page it will appear on your task bar and in your title bar. Now <body>this is the body of your page in which you perform your all functions.
<h1>Heading 1</h1> this is the heading of your page
<p>paragraph</p>
</body>
eg the body of your source code will be like this
<html>
<title>My web page</title>
<body>
<h1>Bioinformatics Department</h1>
<p>description about department of Bioinformatics</p>
</body>
</html>
lets try it and wait for next parts of this tutorial.
Friday, October 8, 2010
HTML Tutorial part 1
10:38 AM
GCbioinfo
0 comments:
Post a Comment