Как здесь использовать header и selection | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Как здесь использовать header и selection

<html> <body> <p align="center"><b1><strong>Maksim Dinkitis</strong></b1></p> <p align="center">Glupishka</p> <p align="center"><img src="https://api2.sololearn.com/v2/certificates/CC-NGADF2ZZ/image/png" alt="sololern" width="300px"> <selection> <hr> <h1>About Me</h1> <p>My name is <b>Maksim</b>.<br> I am a student. <br> I am 16 years old and live in Berlin.</p> <h2>Experience</h2> </selection> <ul> <li> <b>only school</b> |2013/2023 </li> <section> </ul> <hr> <table border="1"> <tr> <th>Skills1</th> <th>Skills2</th> <th>Skills3</th> </tr> <tr> <td>prudence</td> <td>Handsome</td> <td>ability to flex</td> </tr> </selection> </body> </html>

16th Apr 2023, 9:48 AM
Maksims/マキシム
Maksims/マキシム - avatar
2 Respuestas
+ 1
У вас много ошибок в коде: "Нет закрывающего тега таблицы. Одиноко стоящий тег <section> в списке и в конце закрывающий тег </selection>". Есть тег выбора <select>, а не <selection>. Вот простой пример структуры html - страницы, надеюсь это поможет... 😎: https://code.sololearn.com/WuURFRZPW39x/?ref=app
18th Apr 2023, 8:31 AM
Solo
Solo - avatar
+ 6
<selection> is not a valid tag. Maybe you mean <section>. You can use this to isolate certain parts of your document which belong together, for example chapters or panels. The section does does not have any special formatting by default, but it has semantic meaning, and search engines use it to undestand the structure of your page.
16th Apr 2023, 10:10 AM
Tibor Santa
Tibor Santa - avatar