Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions End Term Practice/CSEE/61_2014151_r/form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<style>
table,th,td{
border: 1px solid black;
border-collapse: collapse;

}
th , td{
padding: 5px;
}

</style>
</head>
<body bgcolor="violet">
<form action="abc.php" method="GET" autocomplete="on">
<table>
<!--single Line text-->
<tr><td>
First Name : <input type="text" name="First_Name" placeholder="rohit" value="ro" size="40" maxlength="10" autofocus/><br/>


Last Name : <input type="text" name="First_Name" placeholder="rohit"/><br/>
</td></tr><br>
<!--Password Line input-->
<tr><td>

Password: <input type="password" placeholder="********"/><br>
<!--Text Area-->
</td></tr>
<tr><td>
Description:<br>
<textarea rows="5" cols="50" value="Desciption">
Enter text here
</textarea>
</tr></td>
<br>
<!--Radio Button-->
<tr><td>
Gender:
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>

</td></tr><br>
<!--Email -->
<tr><td>
Email:
<input type="email" name="email" value="" placeholder="abc@gmail.com" required/>
</td></tr><br>

<!--Select Box COntrol-->
<tr><td>
Subject:<select name="dropdown">
<option vlue="Maths" selected>Maths</option>
<option vlue="Python">Python</option>
<option vlue="C++">C++</option>
<option vlue="C">C</option>
</select>
</td></tr><br>
<tr><td>
<input type="submit" name="submit" value="submit"/>
<input type="reset" name="reset" value="Reset">
<input type="button" name="ok" value="Ok"><br>
</td></tr>
</table>
<!--Date time-->
Local Date Time:<input type="datetime-local"/><br>
Local Date Time:<input type="datetime"/><br>
Local Date Time:<input type="date"/><br>
Local Date Time:<input type="month"/><br>

<!--Number-->
Select Number:<input type="number" min="0" max="10" step="1"><br>

<!--URL input control-->
Enter url:<input type="url" name="url"/><br>
<!--Required:Manadatory field-->
Email:<input type="email" required><br>

<!--AutoFocus=Cursor will blink in the called field-->

<datalist id="browser">
<option value="chrome"></option>
</datalist>

</form>
</body>
</html>
12 changes: 12 additions & 0 deletions End Term Practice/CSEE/61_2014151_r/hello.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>This is my html page</h1>
</body>
</html>