0% found this document useful (0 votes)
16 views

SOP 3 Question and Coding

The document contains two HTML pages. The first page has a traveler information form that collects name, travel date, phone number and includes a submit button. The second page displays transportation details like carrier name, time, seat number and destination in a list.

Uploaded by

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

SOP 3 Question and Coding

The document contains two HTML pages. The first page has a traveler information form that collects name, travel date, phone number and includes a submit button. The second page displays transportation details like carrier name, time, seat number and destination in a list.

Uploaded by

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

SOP 3

Page 1.html

<!DOCTYPE html>

<html>

<head>

<title>

Information Form

</title>

<link rel="stylesheet" type="text/css" href="external.css">

</head>

<body>

<h1 align="center">Traveller Infomation form</h1>

<form name="f1">

Enter your name

<input type="text" name="name" auotcomplete><br><br>

Select Date of Travel

<input type="date" name="trvdate"><br><br>


Enter Telephone Number

<input type="tel" name="phone" placeholder="123-456-


7890"pattern="[0-9][3]-[0-9][3]-[0-9](4)" required><br><br>

<Input type="submit" name="submit" value="Submit">

</form>

<br><br>

<a href="https://code.sololearn.com/W37sl3A7Xzbv/?">

<Img src="https://www.dropbox.com/s/ch9zm1pyo70hzr6/submit-
to-tick-button-animation.gif?dl=1" width="150"></a>

</body>

</html>
Out put of Page 1.html
page2.html

<html>

<head>

<title>

Information about Transporter

</title>

<link rel="stylesheet" type="text/css" href="external.css">

</head>

<body>

<h1 align="center">Information about Transporter</h1>

<ul>

<li> Name of Transporter - Air Asia</li>

<li>Time - 09.30 am</li>

<li>Seat no-B39</li>

<li>Destination - Delhi</li>

</ul>

<a href="page 1.html">Connect First Page</a>

</body>

</html>
Output of Page 2.html

You might also like