Name:
CSE 322, Fall 2018: Quiz 2
1. Write HTML code for a hyperlink labeled Github and leads to https://github.com.
<a href="https://github.com">Github</a>

2. Write HTML code for an image to flower.jpg with a width of 200 pixels, a height of 200 pixels, and alternate text that reads "A flower".
<img width="200" height="200" src="flower.jpg">

3. Write HTML code for an ordered list of your top 3 favorite movies.
<ul>
    <li>Star Wars Episode I</li>
    <li>Star Wars Episode II</li>
    <li>Star Wars Episode III</li>
</ul>

4. Name one of the three ways for applying CSS code.
External Style Sheet or Internal Style Sheet or Inline Style

5. What is the equivalent CSS hexadecimal color value for the color red?
#ff0000

6. Name the three generic font-family values in CSS.
serif or sans-serif or monospace