My name is: Sophia Yang

My major is: CS

My IP address is: 130.64.35.17

I grew up in San Mateo, California (40 min south of SF)

Something no one would expect about me: I got 3.5 concussions last year within a couple months :(

My favorite place:

Favorite place

HTML Notes

  1. For ordered lists, use the ol tag and li for each list item.
  2. To preserve formatting, use the
    < pre > tag
  3. To create horizontal lines, use the < hr > tag
  4. To bold, use < strong > tag and to italicize, use < em > tag
  5. For superscript and subscript, use < sup > and < sub > tag
  6. For hyperlinks, use
    a href="file.html"
  7. For images, use
    < img src="abc.jpg" />
  8. Meta tags
  9. Doctype declaration tells browser which HTML version
    !DOCTYPE html
  10. Create tables with < table > tag
    col 1 col 2 col 3
    hihi hihi hihi
  11. Create forms with < form > tag


    Red Blue Green
    Green Blue


Git Notes