InterviewSolution
Saved Bookmarks
| 1. |
While designing a webpage Neena wants to explain the meaning of each step. Can you help her? |
|
Answer» Neena can use Comments while writing the code. It is a good programming practice. Comments improve readability. It is not the part of a program. Comments <! - and - > Eg. <!-This is used to display an information-> <HTML> <!-head section-> <HEAD> <TITLE>Subscript</TITLE> </HEAD> <!-BODY section-> <Body> <B> 'The symbol H <SUB>2</SUB>O represents water</B> </Body> </HTML> |
|