please answer i will mark as brainlist answer
Answers
Answer:
Here's how we can write an HTML program to display, "Welcome to html programming"
<html>
<html>
<body>
<h1>welcome to html programming</h1>
</body>
</html>
know more:
HTML, HyperText Markup language is one of the simplest front end web developing language.
<html> : It's an opening tag.
</html> : It's a termination tag.
To understand HTML, we should know how the structure of a website is:-
Home page: Home page basically tells about the purpose of the site. it's the first page a visitor would visit.
- HTML elements has "on" and "off" elements. these elements are called Container Elements.
- Tags like <br> & <hr> don't have off tags. These are called Empty Elements.
Question :
Write an HTML program to display a text “ Welcome to HLML Programming ”.
Answer :
The below codes are used to display a text “ Welcome to HLML Programming ”.
<html>
<body>
<h1>Welcome to HTML Programming</h1>
</body>
</html>
Knowledge :
The coding show like this = See in attachment please.
What is HTML ?
HTML stands for Hyper Text Markup Language it is a system used to mark text for World Wide Web pages in different styles , colours or else.