0
On where should I wrote my text on the tag?
1 ответ
0
Your text, i. e., the content of your webpage, will go between the body tags. For example, suppose you want to make a webpage which displays "Hello World!!!", your code will be:
<HTML>
<HEAD>
</HEAD>
<BODY>
Hello World!!!
</BODY>
</HTML>
Hope this answers your question.