0
Fill in the blanks to make "first paragrahh" as a comment
<html> <body> ____"first paragraph .......... <p> "my web page "</p> </body> </html> can anyone help me to fill this blank
3 ответов
+ 9
Comments in HTML start with "<!--" and end with "-->"
+ 2
<!--, -->
0
<html>
<body>
<!--First paragraph-->
<p>Welcome to my webpage</p>
</body>
</html>