Home
Squad 161
Cancel

JS history

Intro to JS We’ll be taking a look together at the basics of JavaScript. History The original version of JavaScript was written by Brendan Eich in 10 days. It was intended to enhance the capabi...

Class example day-3

Module-1, Week-1, Day-3 M1W1D3 Find all of the class examples here: Variables /** * Welcome to JavaScript! */ /** * ? Primitive types: * numbers * string * boolean * null * undefin...

Responsive Design

Module-1, Week-1, Day-2 M1W1D2 Mobile-first is the moto for web-development and there is a good reason for that, designing for a mobile (small screen) is easier than for bigger screens so it’...

Class example M1W1D2

Module-1, Week-1, Day-2 M1W1D2 Check the examples done in class! HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv=...

Responsive titles and media query

Example from class: HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <m...

Class example M1W1D1

Module-1, Week-1, Day-1 M1W1D1 You can find the example implemented in class here: HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> &...

WELCOME

HTML or HyperText Markup Language HTML is a standardized system for marking up text documents with structure and formatting information. It is used to create and structure content on the web, and ...

class

Class attribute The class attribute is an HTML attribute that is used to specify a class name for an element. It is used to group elements that have similar characteristics or that will be styled ...

html tags

What’s a tag? A tag, often referenced to as element as well, is how we write up our HTML. There are a lot of available tags with different meanings, let’s see the most generic one and how to use t...

Importing ressources

How to import ressources When creating your webpage, you don’t want it to be just plain text, so we’ll need CSS to style it. You will discover that a lot of the time we want to split all of our fi...