Full Stack Web Development Courses with Real-time projects Start Now!!
Program 1
<html><head><title>Demo CSS Border</title>
<style>
.border
{
border-color: brown;
border-style: double;
width: 500px;
height: 120px;
border-width: thick;
border-left-color: blue;
border-left-style: dotted;
border-right-color: blue;
border-right-style: dotted;
top: 2px;
border-top-color: blueviolet;
}
</style>
</head>
<body>
</body>
<center>
<br><br><br><br><br><br><br><br>
<form class="border">
<table>
<tr>
<th>Enter User Name:</th>
<td>
<input type=text style="font-size: 25;color: brown;" name=txtuser >
</td>
<tr>
<th>Enter Password:</th>
<td><input type=password style="font-size: 25;color: brown;" name=txtuser ></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Submit" style="font-size: 25;color: brown;"></td>
</tr>r>
<table>
</form>
</center>
<body>
</body>>
</html>