what is html? write any 5 coding used in html
Answers
Answered by
1
HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using Markup HTML elements are the building blocks of HTML Pages HTML elements are represented by Tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so On Browsers do not display the HTML tags, but use them to render the content of the page.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using Markup HTML elements are the building blocks of HTML Pages HTML elements are represented by Tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so On Browsers do not display the HTML tags, but use them to render the content of the page.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Answered by
1
Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
Eg 1
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
1st Html page
</body>
</html>
Eg 2
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<marquee>Moving text</marquee>
</body>
</html>
Now the 3rd 4th and the 5th one you can find online or you can make it yourself.
Similar questions