Create an HTML page and write down your Introduction.
Answers
Answered by
3
Answer:
Most tags require you to separately mark the beginning and end of something. The ending tag includes a slash (/) inside the tag. For example, the tag to end the HTML page is:
</html>
With that, we can see the top-level outline of a web page. The HTML code for this is:
<html>
</html>
Inside the start and end tags for the HTML page, you would include other code blocks. All pages need a body block to define the text body of the web page. Most pages also start with a special head block that defines certain parameters for the web browser, such as where to find the stylesheet. We'll explore stylesheets later.
Explanation:
folllow me n thank my answer
Similar questions