so you write a simple function website with raw html and a few style tags
added to the head section
HTML Basics
line breaks
add a line break like
this
with <br>
Headers
You can organize all of the information in your page with nested header
fields of varying sizes with:
header 1
header 2
header 3
header 4
header 5
that should look like:
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>
number list
first point
second point
third point
or bullet points
bullet one
bullet two
bullet three
should end up looking like this:
number list
first point
second point
third point
or bullet points
bullet one
bullet two
bullet three
media
embed images with the <img> tag
< img src="path/to/img_file.jpg" alt="alternative text description"
width="500" height="600">
or videos with <video> tag
<video width="320" height="240" controls>
<source src="path/to/movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>