Hey @randboat25,
unlike most programming languages, you do not need to put quotation marks to let the program know that its a string of text
put them inbetween an element and html will know what to format it
example code:
<p> text here </p>
<h1> text here </h1>
<h2> text here </h2>
<h3> text here </h3>
<h4> text here </h4>
<h5> text here </h5>
<h6> text here </h6>
Html will automatically preview it, also you need both an opening and closing tag for it to preview
closing tag can be seen with a slash before the element, example of closing tag
</h1>
example of opening tag
<h1>
you need to put the text inbetween an opening and closing tag for it to preview, you do not need to surround it with quotations.