<script>
tag in your html file that points to
another javascript file !
line breaks
add a line break likethis
with
<br>
Headers
You can organize all of the information in your page with nested header fields of varying sizes
so that this:
header 1
header 2
header 3
header 4
header 5
should look like this:
header 1
header 2
header 3
header 4
header 5
Lists
you can create a numbered list (ordered list) with<ol>
</ol>
or bullet points (unordered list) with <ul>
</ul>
and then embed list items with <li>
</li>
so that this:
number list
- first point
- second point
- third point
- bullet one
- bullet two
- bullet three
should end up looking like this:
number list
number list
- first point
- second point
- third point
- bullet one
- bullet two
- bullet three
media
images
embed images with the<img>
tag
![alternative text description](path/to/img_file.png)
![example image](../media/sample.jpg)
videos
or videos with<video>
tag