Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
We can set: <meta name="viewport" content="width=device-width, initial-scale=1.0"> in header file.

This gives the browser instructions on how to control the page's dimensions and scaling.

The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).

The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser.
3 changes: 2 additions & 1 deletion Introduction to CSS/Lesson 1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>The Generics</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is the description">
</head>
<body>
Expand Down Expand Up @@ -106,4 +107,4 @@ <h3>The Generics</h3>
</ul>
</footer>
</body>
</html>
</html>