Hi @yanayev,
HTML inspector:
div id="container">
<div id="floated-imgs">
<img src="https://cdn.catawiki.net/assets/marketing/marketing/upload_images-files/29049-f6d29482c3b2cc835e785e37e5f9793511155169-original.jpg" height="180" width="170"></img>
<div id="container">
<div id="floated-imgs">
<div class= "audrey-gigi">
div id="container">
<div id="floated-imgs">
<img src="https://cdn.catawiki.net/assets/marketing/marketing/upload_images-files/29049-f6d29482c3b2cc835e785e37e5f9793511155169-original.jpg" height="180" width="170"></img>
<div id="container">
<div id="floated-imgs">
<div class= "audrey-gigi">
MDN documentation:
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id
The id global attribute defines a unique identifier (ID) which must be unique in the whole document.
- The
<div>
element cannot be a child of the <ul>
element.
<h2>Early Life</h2>
<ul>
<div id="container">
MDN documentation:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
Permitted content
zero or more <li>
elements, eventually mixed with <ol>
and <ul>
elements.
Cheers and happy coding 