HTML-program 11
Posted On Wednesday, May 20, 2009 at at 1:21 AM by RashedProgram 11:
<html>
<head>
<title>This is my first webpage</title>
</head>
<body>
This is my first webpage. It is made with HTML.<br><hr></br>
<address>S.M. Rasheduzzaman.</br>
FMRT Discipline</br>
Khulna University<br>
Khulna, Bangladesh.</address>
<hr width="50%" color="red" align="left">
<hr width="20%" color="red" align="center">
<hr width="full" color="red" align="left">
</body>
</html>
- Explanation:
- <hr> is used for horizontal line. It has different attributes as height, width, color, align etc.
- <address> is used for writing address.
- It will look like:
This is my first webpage. It is made with HTML.
S.M. Rasheduzzaman.
FMRT Discipline
Khulna University
Khulna, Bangladesh.
(center align is not showing here correctly)