List Example Correct Ans-<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Comments Correct Ans-<!-- This is a comment. It doesn't do anything! -->
Command + / turns text into comments in sublime.
Document tags example Correct Ans-These elements/tags are entered into every document.
<!DOCTYPE html>
<html>
<head>
<title></title>
, </head>
<body>
</body>
</html>
<title> Example Correct Ans-<title>Title that shows up in search engines</title>
This goes within the head
Simple Example Correct Ans-<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple HTML document</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Headings Example Correct Ans-<!DOCTYPE html>
<html lang="en">
<head>