The BOTTOM LINE Quote Of The Day

The BOTTOM LINE Quote Of The Day

Don't Ever Tell GOD How BIG Your Problems are.
Just Tell Your Problems How BIG your GOD is ;)

Sunday, November 4, 2012

design a Web Page showing schedule of a railway station using Inline CSS

<html>
<head>
<title>train</title>
<style type="text/css">
body {
color:red;}
</style>
</head>
<body style="background-color:gold">
<img src="railway.jpg" align="left" width="250px" height="250px">
<h2 style="color:red"><center>TRAIN SCHEDULE</center></h2>
<table border="1" width="100px" height="150px" align="center">
<tr style="color:black">
<td style="text-weight:bold">S.No.</td>
<td style="text-weight:bold">Name of the Train</td>
<td style="text-weight:bold">Arrival Time</td>
<td style="text-weight:bold">Depart Time</td>
<td style="text-weight:bold">Delayed/On-time</td>
</tr>
<tr>
<td>1</td>
<td>Shatabadi Express</td><td>9 a.m.</td><td>9:30 a.m.</td><td>On time</td>
</tr>
<tr>
<td>2</td>
<td>Rajnikant Express</td><td>11 a.m.</td><td>11:05 a.m.</td><td>On time</td>
</tr>
<tr>
<td>3</td>
<td>Dhoom Express</td><td>2 p.m.</td><td>2:10 p.m.</td><td>Delayed</td>
</tr>
<td>3</td>
<td>Dhoom Express</td><td>2 p.m.</td><td>2:10 p.m.</td><td>Delayed</td>
</tr>
<td>3</td>
<td>Dhoom Express</td><td>2 p.m.</td><td>2:10 p.m.</td><td>Delayed</td>
</tr>
</table>
</body>
</html>

No comments:

Post a Comment