BootCamp by Dr.angela
1. The List Element
-
<ul> ~ </ul>
: Unordered List (Bullet) -
<ol> ~ </ol>
: Ordered List (Number) -
<li> ~ </li>
: List item - Proper indentation is important
2. Anchor Elements
-
<a> ~ </a>
- attribute : href (URL), target (open location : _self/_blank), title (tooltip text), rel (relationship, security), download (save file), draggable (drag element: true/false)
3. Image Elemnts
<img src = " ", alt = " ">
- src (source) : Defines the path or URL of the image file
- alt (alternative text)
Top comments (0)