civichackingagency / congress

Creative Commons Zero v1.0 Universal
0 stars 0 forks source link

Add viewport meta to header #25

Closed lukefretwell closed 11 months ago

lukefretwell commented 11 months ago

Background: https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag

Example:

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap demo</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
  </body>
</html>