Skip to content

Instantly share code, notes, and snippets.

View hilaring's full-sized avatar

Oriol Hilari hilaring

View GitHub Profile
@hilaring
hilaring / JS-BasicAlgorithms.js
Created May 11, 2018 20:07
Module 1 - Exercise 1
//1. Create a variable hacker1 with the driver's name
var hacker1 = "Oriol";
//2. Print "The driver's name is XXXX"
console.log("The driver's name is: " + hacker1);
//3. Create a variable hacker2 and ask the user for the navigator's name
var hacker2 = window.prompt("What's your name?");
//4. Print "The navigator's name is YYYY"
@hilaring
hilaring / media-query.css
Created November 24, 2020 17:53 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */