Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one
View the source of this content.
Let's get the whole "linebreak" thing out of the way. The next paragraph contains two phrases separated by a single newline character:
Roses are red Violets are blue
~/ | |
↪ cd code/project | |
project[master]/ | |
↪ cd - | |
~/ | |
↪ cd code/project | |
project[master]/ |
What brings you to web development? What's your goal? What's your passion? What wakes you up in the middle of the night?
Tell me about common themes you run into working in the UI. How did you address them?
What do you do to keep up to date with technology (blogs, conferences, etc)?
/** | |
* Convert From/To Binary/Decimal/Hexadecimal in JavaScript | |
* https://gist.github.com/faisalman | |
* | |
* Copyright 2012-2015, Faisalman <[email protected]> | |
* Licensed under The MIT License | |
* http://www.opensource.org/licenses/mit-license | |
*/ | |
(function(){ |
#!/usr/bin/ruby | |
require 'time' | |
def format_time(seconds) | |
hours = (seconds / 3600).to_i | |
minutes = ((seconds % 3600) / 60).to_i | |
seconds = (seconds % 60).to_i | |
minutes = "0#{minutes}" if minutes < 10 | |
seconds = "0#{seconds}" if seconds < 10 |
/* if portrait mode is detected, rotate the entire site -90 degrees to hint rotating to landscape */ | |
@media (orientation: portrait) { | |
body { | |
-webkit-transform: rotate(-90deg); | |
-moz-transform: rotate(-90deg); | |
-o-transform: rotate(-90deg); | |
-ms-transform: rotate(-90deg); | |
transform: rotate(-90deg); | |
} | |
} |
// * iOS zooms on form element focus. This script prevents that behavior. | |
// * <meta name="viewport" content="width=device-width,initial-scale=1"> | |
// If you dynamically add a maximum-scale where no default exists, | |
// the value persists on the page even after removed from viewport.content. | |
// So if no maximum-scale is set, adds maximum-scale=10 on blur. | |
// If maximum-scale is set, reuses that original value. | |
// * <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=2.0,maximum-scale=1.0"> | |
// second maximum-scale declaration will take precedence. | |
// * Will respect original maximum-scale, if set. | |
// * Works with int or float scale values. |