Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Problem in submission in terminal

My response is not submitted after doing right code in the terminal
in the given code in terminal i have to change some text formatting. I right code like that-
<h4><p style="color:violet">Do you know?</h4>
then i submitted in terminal but my response in not submitted ..help me
by

1 Answer

ayanali
It looks like you are trying to use HTML formatting in your code, but it is not being recognized as valid code.
Here is the corrected HTML code:
<h4><p style="color:violet">Do you know?</p></h4>


Note that this HTML code will not be recognized as valid code in a Go program. If you want to include HTML in a Go program, you need to use a library that can parse and render HTML, such as the 'html/template' package.

I hope this helps! Let me know if you have any other questions.

Login / Signup to Answer the Question.