DECO1400 Lecture 6

Responsive Web Design

Viewport and <meta> tag

<meta name="viewport" content="width=device-width, initial-scale=1.0">

Grid View

Media Queries

/* If the browser is 600px or smallwer in width, the background colour will be light blue */
@media only screen and (max-width: 600px) {
    body {
        background-color: lightblue;
    }
}

Responsive Web Design Images

JavaScript

What Kind of Behaviour does JS Provide?

History of JS

Why use JS

External JS Files

JS Functions

JS Conditions

For-Loops

for (statement1; statement2; statement3) {
  // code block to be executed
}
for (let i = 0; i < 5; i++) {
  text += "The number is " + i + "<br>";
}