Html an introduction
Answers
Answer:
HTML is a markup language which is used by the browser to manipulate text, images and other content to display it in required format. HTML was created by Tim Berners-Lee in 1991. The first ever version of HTML was HTML 1.0 but the first standard version was HTML 2.0 which was published in 1999.
BRAINLIST PLZZ AND FOLLOW ✌✌
Answer:
HTML is a hypertext markup language used to create web pages. Here is the basic structure.
<!DOCTYPE html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<h1>My first heading</h1>
<body>
</html>
Explanation:
You need a code editor like Visual Studio Code / Sublime Text Editor etc to write HTML code. You can save the code above in a file name index.html.
Then, open this file index.html in your web browser like Chrome / Firefox / Safari. You will see the result in your browser.
Here is a good explanation with example :
https://codewithrasbin.com/html-for-beginners-course-lesson-4-how-to-display-some-content-on-web-page/
Hope this helps!