glissario / bootcamp-schedule

bootcamp progress
0 stars 0 forks source link

HTML&CSS Basics: CV Setup #14

Closed codingbootcampseu closed 3 years ago

codingbootcampseu commented 3 years ago

Hints

The basic HTML skeleton created by the HTML5 emmet command looks like this

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body></body>
</html>

Bonus

Open the browser dev tools and view your cv in the mobile emulation. Toggle (remove or add) the viewport meta tag and see how your cv behaves in the mobile emulation.

Example Solution

Example solution for this task.

glissario commented 3 years ago

done