0% found this document useful (0 votes)
6 views2 pages

HTML Forms for File Uploads and Registration

The documents consist of five HTML forms with various functionalities. They include file upload, email registration, URL input, telephone number entry, and lucky number selection. All forms are styled with an orange background and contain appropriate labels and input types.

Uploaded by

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

HTML Forms for File Uploads and Registration

The documents consist of five HTML forms with various functionalities. They include file upload, email registration, URL input, telephone number entry, and lucky number selection. All forms are styled with an orange background and contain appropriate labels and input types.

Uploaded by

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

Twenty.

html:

<html>

<body bgcolor="orange">

<form>

<label for ="fname"> select the file to upload </label>

<br><br>

<input type="file" name="fname"></input><br>

<br><br>

<input type="submit" value="upload"/>

</form>

</body>

</html>

[Link]:

<html>

<body bgcolor="orange">

<form>

<label for ="mail"> Enter your email id below: </label>

<br><br>

<input type="email" name="mail"></input><br>

<br><br>

<input type="submit" value="register"/>

</form>

</body>

</html>

[Link]:

<html>

<body bgcolor="orange">

<form>

<label for ="mail"> Enter the URL below: </label>

Material by: AFROZ KHAN (JAVA FULL STACK DEVELOPER TRAINER)


<br><br>

<input type="url" placeholder="[Link] name="mail"></input><br>

<br><br>

<input type="submit" value="register"/>

</form>

</body>

</html>

[Link]:

<html>

<body bgcolor="orange">

<form>

<label for ="telnumber"> Enter Your Telephone number: </label>

<br><br>

<input type="tel" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" required name="telnumber"></input><br>

<br><br>

<input type="submit" value="register"/>

</form>

</body>

</html>

[Link]:

<html>

<body bgcolor="orange">

<form>

<label for ="telnumber"> select Your Lucky number: </label>

<br><br>

<input type="number" min="5" max="10"></input><br>

<br><br>

<input type="submit" value="register"/>

</form></body></html>

Material by: AFROZ KHAN (JAVA FULL STACK DEVELOPER TRAINER)

You might also like