Key satement : design for mobile first

Media queries : 2 ways to define :

<link href="css/phone.css" rel="stylesheet" type="text/css" media="only screen and (max-width: 400px)" >

OR

@media screen and (min-width: 900px) {

 .class {
   background: #666;
 }

}

Websockets !