what is HTML?
HTML is stands for Hypertext markup Language.it is the standard languages used to create and structure web pages.HTML tags to define elements such as headings,paragraphs,images,links,and tables.web browsers read HTML files and display the content on the screen.
What are HTML tags and element?
HTML tags are keywords enclosed in angle bracket.
HTML elements consists of a start tag,content,and an end tag.
<p>this is a paragraph</p>
what are attributes in HTML?
Attributes provide additional information about HTML element.they are written inside the opening tag.
Example:
<img src="image.ipg" alt="sample image">
What are semantic elements in HTML?
semantic elements clearly describe their meaning to both the browser and the developer.
Examples:
<header>,<footer>,<article>,<section>,<nav>
what is the difference betweendiv and span?
divis a block-level element.spanis an inline element.
what is a hyperlink in HTML?
A hyperlink is used to connect one web page to another.it is created using the atag.
Example:
<a href="https://example.com">
What is an HTML form?
An html form is used to collect user input such as name,email,and password.
examples:
<form>
<input type="text"
placeholder="enter name">
<input type="submit">
</form>
Top comments (0)