Skip to content

Instantly share code, notes, and snippets.

CSS


What is CSS?

  • CSS stands for Cascading Style Sheet.
  • Styles define how to display HTML elements
  • Styles were added to HTML 4.0 to solve a problem
  • External Style Sheets can save a lot of work
  • External Style Sheets are stored in CSS files
@loljoho
loljoho / LICENCE SUBLIME TEXT
Created October 1, 2018 20:38
Sublime Text 3 Serial key build is 3176
## Sublime Text 3 Serial key build is 3176
> * Added these lines into /etc/hosts
127.0.0.1 www.sublimetext.com
127.0.0.1 license.sublimehq.com
> * Used the license key
----- BEGIN LICENSE -----
@loljoho
loljoho / angularjs-providers-explained.md
Created January 12, 2017 05:37 — forked from demisx/angularjs-providers-explained.md
AngularJS Providers: Constant/Value/Service/Factory/Decorator/Provider
Provider Singleton Instantiable Configurable
Constant Yes No No
Value Yes No No
Service Yes No No
Factory Yes Yes No
Decorator Yes No? No
Provider Yes Yes Yes

Constant

@loljoho
loljoho / app.js
Created December 10, 2015 23:55 — forked from sogko/app.js
gulp + expressjs + nodemon + browser-sync
'use strict';
// simple express server
var express = require('express');
var app = express();
var router = express.Router();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendfile('./public/index.html');
@loljoho
loljoho / index.html
Last active September 1, 2015 03:59 — forked from pixbit/index.html
Android Jellybean Loading animation with pure css.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Android Jellybean Loading animation with pure css. &middot; CodePen</title>
<!--
Copyright (c) 2012 Simon Clavey, http://codepen.io/Simonclavey
Permission is hereby granted, free of charge, to any person obtaining