I dont know how to uncomment HTML your code so far
<!--<h1>Hello World</h1><h2>CatPhotoApp/h2><p>kitty ipsum amet</p>
I dont know how to uncomment HTML your code so far
<!--<h1>Hello World</h1><h2>CatPhotoApp/h2><p>kitty ipsum amet</p>
<!--helloworld-->
Hi
Would love to help you further out.
Mind elaborating by telling what you did mean excatly?
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).
delete this
To “comment out” code is to turn that line into a comment, so that it doesn’t run. You create a comment in html by putting it in between <!--
and -->
, so to “comment out” a piece of code, you put those characters before and after. To “uncomment” you need to remove the <!--
from the beginning and -->
from the end.