things that i wanna add to this
- breakdown thingy of the 'head' part, like what is what and what is does / means
- how to add links to various things, and what the tags for them mean
html notes
my notes on things and how to use them in html !!
basic text formatting && such
- use
<strong>
text</strong>
or <b>
text</b>
for bolded text
- use
<em>
text</em>
or <i>
text</i>
for italicized text
- use
<u>
text</u>
for underlined text
( 'em' stands for emphasis/emphasized )
symbols // characters
to type a character that is used in html code, an entity is needed;; otherwise the character will be read as part of the code and not show up in the output !!
(to write this list, entities were needed for all the symbols, so that the text wouldn't be actually read as an entity)
- & = &
- < = <
- > = >
- " = "
( 'amp' = ampersand // 'lt' = less than // 'gt' = greater than )
entities consist of either the character's name or number (& is either &
or &
)
paragraph thingz
headers !!
headers r just.. headers..
bigger number = smaller text
<h#>
header text</h#>
header one
header two
header three
header four
header five
header six
lists !!
<ul>text here is optional
<li>text goes here !!</li>
<li>as much text as you want</li>
<li>can go in each point/line</li>
don't forget the end tag!≶/ul>
the tags above can be used to:
- make a list!
- this type of list uses bullet points
- each set of those li tags is a new point/line
don't forget the butt :)
the other type of list
- is an ordered list
- it's almost the same, except:
- its tags say ol, rather than ul
( ul = unordered list // ol = ordered list // li = list )