1. Describe your previous experiences with coding. What classes have you already taken where you were exposed to HTML/CSS/JS? What parts of the class resonated with you? What parts were most confusing?
  2. Last semster was my first time ever coding. It was a little tedious to get the hang of at first, but by the end of the semester I truly felt like I had learned something new. The only things that remained tricky for me is javascript, as we didn't touch on that very much last semester.

  3. How excited about learning code are you? Are you nervous about learning code? If so, why? What can I do in this class to help reduce this anxiety?
  4. I'm very excited to learn coding because I've always enjoyed website designing. I was more nervous last semester, but since I have a little knowledge about code I'm able to absorb what I learn better in this class.

  5. How do you imagine coding fitting in with the rest of your design curriculum and career after college?
  6. I imagine coding will come in handy many times, as I hope to continue in the web design path.

  7. What text editor do you prefer to use?
  8. For school I like to use Stickies

  9. Have you used GitHub before? Do you know what it is? Describe your understanding of GitHub.
  10. We used Github last semester. I know that it's used to publish our websites, but that's about it.

  11. Describe the relationship between HTML, CSS and JavaScript. Try using a unique analogy to describe this relationship. Bonus points for creative analogies.
  12. HTML, CSS and JavaScript is like salt, pepper and ketchup. They all taste different, but serve the same purpose of editing a website.

  13. Using each HTML heading tag, list your favorite foods ranked by importance (remember, there are six levels of heading tags, `h1` through `h6`).
  14. 1. Pasta

    2. Broccoli cheddar soup

    3. Chinese food

    4. Falafel

    5. Almond-crusted flounder
    6. Margherita pizza
  15. Create an unordered list ( `ul` ) and link to some of your favorite graphic design or development related websites. Include a paragraph ( `p` ) on each site describing why it is important to you.
  16. Insert an image (`img`) that brings you joy to the page. Make sure the image includes `alt text` that describes the image.
  17. My dog Paisley
  18. Insert a video embed into the page (for example, a YouTube or Vimeo embed tag of a video of your choosing). You have a few ways you can approach this:
  19. Nest the following series of HTML tags inside each other, where each → represents a new level. Make sure to maintain proper indentation.
  20. Create an ordered list of the top 5 countries you’d like to visit. Within each country, create another ordered list of the top cities you’d like to visit in that country. Maintain proper indentation and make sure you nest your ordered lists properly.


  21. Use `pre` tags to create a simple [concrete poetry](https://en.wikipedia.org/wiki/Concrete_poetry) version of a Haiku or other poem you write. The poem should represent how you feel at this moment.
  22.                                                                 sleepsleepsleepsleepsleepsleepsleep
                                                                                               sleep
                                                                                             sleep
                                                                                         sleep
                                                                                    sleep
                                                                                sleep
                                                                           sleep
                                                                     sleepsleepsleepsleepsleepsleepsleep
                                     sleepsleepsleepsleepsleep
                                                     sleep
                                                   sleep
                                                 sleep
                                               sleep
                                            sleep
                                       sleepsleepsleepsleepsleep
                sleepsleepsleep
                       sleep
                    sleep
                  sleep
                sleepsleepsleep
    
    
    
            

  23. Write an HTML comment that is hidden from the browser, but displays in the code.
  24. Create an unordered list of at least 6 musical artists you like to listen to. Add a class to each list item that matches the genre of music of that artist.





  25. Describe the difference between block, inline-block and inline elements.
  26. A Block element has white space arount it, while an inline-block element does not have a break before and after it.

  27. Use CSS to style the musical genre classes you added in question 15. Give each genre a color and personality using CSS.
  28. Use any CSS knowledge you currently have to style your questionnaire in a unique way. Make sure to update the font to something other than the default (use the font-family css property).
  29. In a `script` tag, use the console.log function to write a message to the console (Cmd+Opt+U). Tell me something interesting about yourself.
  30. Add a `button` to your HTML file and make it do something when clicked using JavaScript