Check w3schools for further information
Element -- selects all h2
elements on the page
h2 {
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>React Quick Prototyping</title> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react.min.js"></script> |
<html> | |
<head> | |
</head> | |
<body> | |
<div style="text-align:center" onmouseover="Play()" onmouseout="Pause()"> | |
<video id="video1" width="480"> | |
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type="video/mp4" /> | |
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.ogg" type="video/ogg" /> | |
Your browser does not support HTML5 video. | |
</video> |
Check w3schools for further information
Element -- selects all h2
elements on the page
h2 {
import json, requests | |
import pprint | |
url = 'http://maps.googleapis.com/maps/api/directions/json' | |
params = dict( | |
origin='Toledo,Spain', | |
destination='Madrid,Spain', | |
sensor='false' | |
) |
#!/usr/bin/python | |
''' Python command line argument example using argparse module | |
Example output: | |
./parser.py --server=pyserver --port=8080,443,25,22,21 --keyword=pyisgood | |
Server name: [ pyserver ] |
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
div { |
Forked from Jeremy Wilken's Pen Ionic Framework, Loading Example.
<?php | |
// get the HTTP method, path and body of the request | |
$method = $_SERVER['REQUEST_METHOD']; | |
$request = explode('/', trim($_SERVER['PATH_INFO'],'/')); | |
$input = json_decode(file_get_contents('php://input'),true); | |
// connect to the mysql database | |
$link = mysqli_connect('localhost', 'user', 'pass', 'dbname'); | |
mysqli_set_charset($link,'utf8'); |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)