0% found this document useful (0 votes)
7 views1 page

Web Assign 1

The document is an HTML form for student information submission. It includes fields for the student's name, password, gender selection, favorite car, birth date, and arriving time. The form uses a GET method to send data to 'action_page.php' upon submission.

Uploaded by

yassaleh220
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Web Assign 1

The document is an HTML form for student information submission. It includes fields for the student's name, password, gender selection, favorite car, birth date, and arriving time. The form uses a GET method to send data to 'action_page.php' upon submission.

Uploaded by

yassaleh220
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="action_page.php" method="get">
<label for="name">Student Name :</label>
<input id="name" name="name" type="text" value="Ali" readonly
style="background-color: rgb(249, 242, 184);"><br><br>
<label for="password">password :</label>
<input id="password" name="pass" type="password"><br><br>
<label>Gender :</label>
<label for="male">Male</label>
<input id="male" type="radio" name="gender" value="male">
<label for="female">Female</label>
<input id="female" type="radio" name="gender" value="female"><br><br>
<label for="car">Favorite-car :</label>
<select id="car" name="car">
<option selected>Volvo</option>
</select><br><br>
<label for="birthDate">Birth Date :</label>
<input id="birthDate" name="birthDate" type="date"><br><br>
<label for="arrivingTime">Arriving Time :</label>
<input type="time" id="arrivingTime" name="arrivingTime"><br><br>
<input type="submit" value="send" >
</form>
</body>
</html>

You might also like