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

Web Interface HTML Notes

The document contains an HTML registration form with fields for a user's full name, email, and password. The form includes labels, input fields, and a submit button.

Uploaded by

92fgf9fnkk
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)
24 views2 pages

Web Interface HTML Notes

The document contains an HTML registration form with fields for a user's full name, email, and password. The form includes labels, input fields, and a submit button.

Uploaded by

92fgf9fnkk
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
You are on page 1/ 2

<html>

<head>

<title>Registration form</title>

</head>

<body>

<p> Registration form </p>

<form>

<label for="fullname">Full Name:</label>

<input id="fullname" type="text"><br><br>

<label for="email">Email:</label>

<input id="email" type="email"><br><br>

<label for="pwd">Password:</label>

<input id="pwd" type="password"><br><br>

<button>Submit</button>

</form>

</body>

</html>
Tags Explained:

<html>: Indicates the beginning and end of an HTML document.

<head>: Contains meta-information about the document, such as the title.

<title>: Sets the title of the HTML document that appears in the browser's title bar or tab.

<body>: Contains the visible content of the webpage.

<h1 >: This tag stands for "heading level 1." It's the most important and typically the largest heading on a
page. It's used to denote the primary heading or title of a webpage or a section within the page. Heading
tags can go from h1 to h6.

<p>: Creates a paragraph of text.

<form>: Creates a form that allows users to input data.

<label>: Creates a label for an input field. The for attribute in the <label> tag connects it to a specific
input field using the id attribute.

<input>: An input field where users can enter different types of data. It can have various types such as
text, email, password, etc. The id attribute uniquely identifies each input field and is connected to its
corresponding label using the for attribute.

<button>: Creates a button that users can click to submit the form.

<br>: Line break also you to go to the next line.

Output:

You might also like