+ 1
Alguien más le pasó?
Estoy en el curso de HTML y en una de las lecciones me dice que está mal una parte donde hay que completar el código, pero no veo donde está el error: < > (html) <head> <title>....</title> < > (/head) < > (body) <p>...</p> <button>...</button> </body> </html>
6 ответов
+ 3
Nahum Monsalve
If you're having trouble in code, share your code and describe what error message you're receiving. And what you want specific output.
without watching no one can figure out what's going wrong.
+ 1
Nahum Monsalve
According to your description..
This is correct tags..
<html>
<head>
<title>....</title>
</head>
<body>
<p>...</p>
<button>...</button>
</body>
</html>
+ 1
Nahum Monsalve
Again,
For better response/answer, share your code.
Without watching code how can be figure out what's going wrong?
0
I added the code below my description .. the words inside the parentheses are the ones I put as an answer
0
Yes, it is what I put but it took me as an error so it seemed strange to me
0
I transcribe the exercise below with my answers
Completa el código
<html>
<head>
<title>Hotel Name</title>
</head>
<body>
<p>This is the best hotel in town</p>
<button>Book a room</button>
</body>
</html>