HTML ELEMENTS-
Html elements are starting tag content & end tag.
The HTML element is everything from the starting tag to the ending tag.
Syntax:-
<tagname>Content </tagname>
Example:-
<p>paraghraph</p>
Input elements:- it is used to create interactive controls for web-based forms to accept data from the user.
Following are input types used in HTML:-
- email.
- number
- password
- range -time
- URL
- Date time-local
Heading tag:-
- It is used to give headings to text.
- it ranges from h1 to h6.
Example:-
<h1>HEADING NO.1</h1>
Paragraph tag:- To write the paragraph or some text on the webpage.
Example:-
<p>lorem20</p>
Image tag:-
- To insert the image on a webpage.
Example:-
<image src="./iamge address"alt="discription of image"
Audio tag:-
- To insert audio files on the web page.
- Controls are Mandatory.
Example:-
<audio src="./audio address" controls>name of audio</audio>
Video tag:-
- To insert Video files on the web page.
- Controls are Mandatory.
Example:-
<Video src="./Video address" controls>name of Video</Video>
Anchor tag:-
To insert a link on the web page
Example:-
<a href="google.com" target="_blank"