FEND Week 2
This week I finished the Web Foundations lessons/quizzes and continued my focus on responsive web design. Once I completed the lessons I continued work on the portfolio website project which is due in a couple days. Responsive Design One of the quizzes provided non-responsive html & css files that had to be tweaked to make them responsive. This involved setting relative widths for containers (ex: using width: 100% vs width: 800px) , padding the a tags (to ensure touch targets are easy to hit on smaller screens) and adding the following meta element within the <head> section of the html to optimize the viewport for mobile devices: <meta name="viewport" content="width=device-width, initial-scale=1.0"> Here are a couple explanations that go into more detail on the viewport meta tag: Using the viewport meta…