What is the HTML coding of making a login and sign up page?
Answers
Answered by
1
Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
An HTML element is a start tag and an end tag with content in between:
<h1>This is a Heading</h1>
Start tag Element content End tag
<h1> This is a Heading </h1>
<p> This is paragraph. </p>
HTML Attributes
HTML elements can have attributes
Attributes provide additional information about the element
Attributes come in name/value pairs like charset="utf-8"
Example Explained
HTML elements are the building blocks of HTML pages.
The <!DOCTYPE html> declaration defines this document to be HTML5
The <html> element is the root element of an HTML page
The lang attribute defines the language of the document
The <meta> element contains meta information about the document
The charset attribure defines the character set used in the document
The <title> element specifies a title for the document
The <body> element contains the visible page content
The <h1> element defines a large heading
The <p> element defines a paragraph
An HTML element is a start tag and an end tag with content in between:
<h1>This is a Heading</h1>
Start tag Element content End tag
<h1> This is a Heading </h1>
<p> This is paragraph. </p>
HTML Attributes
HTML elements can have attributes
Attributes provide additional information about the element
Attributes come in name/value pairs like charset="utf-8"
Example Explained
HTML elements are the building blocks of HTML pages.
The <!DOCTYPE html> declaration defines this document to be HTML5
The <html> element is the root element of an HTML page
The lang attribute defines the language of the document
The <meta> element contains meta information about the document
The charset attribure defines the character set used in the document
The <title> element specifies a title for the document
The <body> element contains the visible page content
The <h1> element defines a large heading
The <p> element defines a paragraph
Similar questions