The font is called monofur and you can find it here: {{ http://www.dafont.com/monofur.font }}. Also, it is free but please read the text doc to see if any limitations or restrictions apply.
A Pen by John Motyl Jr on CodePen.
<a href="http://www.dafont.com/monofur.font" class="download-link" target="_blank">font source</a> | |
<img src="http://johnmotyljr.com/codepen/programming-fonts/font-image.png"/> | |
<br> | |
<img src="http://johnmotyljr.com/codepen/programming-fonts/in-chrome.png"/> | |
<pre class="prettyprint linenums"><code class="language-html"><!DOCTYPE html> | |
<html> | |
<head> | |
<title>Site Title</title> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="styles/stylesheet.css"> | |
<link rel="shortcut icon" href="favicon.ico"> | |
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
<meta name="msapplication-TileColor" content="#f6f6f6"> | |
<meta name="msapplication-TileImage" content="favicon.ico"> | |
</head> | |
<body> | |
<div id="js-wrapper"> | |
<header class="site-header"> | |
<nav> | |
<a href="#">link #1</a> | |
<a href="#">link #2</a> | |
<a href="#">link #3</a> | |
<a href="#">link #4</a> | |
<a href="#">link #5</a> | |
</nav> | |
</header> | |
<section class="site-content"> | |
<h1>introduction</h1> | |
</section> | |
<footer class="site-footer"> | |
copyright 2013 company | |
</footer> | |
</div> | |
</body> | |
</html></code></pre> |
The font is called monofur and you can find it here: {{ http://www.dafont.com/monofur.font }}. Also, it is free but please read the text doc to see if any limitations or restrictions apply.
A Pen by John Motyl Jr on CodePen.
$(function () { | |
prettyPrint(); | |
$('ol li').hover( | |
function () { | |
$(this).css('zoom', '110%'); | |
}, function () { | |
$(this).css('zoom', '100%'); | |
}); | |
}); |
@font-face { | |
font-family: 'monofurregular'; | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof55-webfont.eot'); | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof55-webfont.eot?#iefix') format('embedded-opentype'), | |
url('http://johnmotyljr.com/codepen/programming-fonts/monof55-webfont.woff') format('woff'), | |
url('http://johnmotyljr.com/codepen/programming-fonts/monof55-webfont.ttf') format('truetype'); | |
font-weight: normal; | |
font-style: normal; | |
} | |
@font-face { | |
font-family: 'monofur__italic'; | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof56-webfont.eot'); | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof56-webfont.eot?#iefix') format('embedded-opentype'), | |
url('http://johnmotyljr.com/codepen/programming-fonts/monof56-webfont.woff') format('woff'), | |
url('http://johnmotyljr.com/codepen/programming-fonts/monof56-webfont.ttf') format('truetype'); | |
font-weight: normal; | |
font-style: normal; | |
} | |
@media screen and (-webkit-min-device-pixel-ratio:0) { | |
@font-face { | |
font-family: 'monofurregular'; | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof55-webfont.svg#monofurregular') format('svg'); | |
} | |
@font-face { | |
font-family: 'monofur__italic'; | |
src: url('http://johnmotyljr.com/codepen/programming-fonts/monof56-webfont.svg#monofur__italic') format('svg'); | |
} | |
} | |
body { | |
background: #222; | |
padding: 20px 50px; | |
} | |
pre { | |
} | |
code { | |
font:normal normal 1.2em/1.2 'monofurregular', 'monaco', 'inconsolata', 'consolas'; | |
color: #f8f8f8; | |
} | |
.italic { | |
font:normal normal 20px/1.2 'monofur__italic'; | |
} | |
a { | |
color: #222; | |
text-decoration: none; | |
} | |
.pun, .opn, .clo { | |
color: #a87b60; | |
} | |
.tag { | |
color: #a87b60; | |
} | |
.atn { | |
color: #60827e; | |
} | |
.atv { | |
color: #5b8390; | |
} | |
.dec, .var { | |
color: #676767; | |
} | |
/* Specify class=linenums on a pre to get line numbering */ | |
ol.linenums { | |
margin-top: 0; | |
margin-bottom: 0; | |
} | |
ol.linenums li:hover { | |
background: #2E2E2E; | |
border: 1px solid #151415; | |
border-left: 4px solid #151415; | |
} | |
/* IE indents via margin-left */ | |
li.L0, | |
li.L1, | |
li.L2, | |
li.L3, | |
li.L4, | |
li.L5, | |
li.L6, | |
li.L7, | |
li.L8, | |
li.L9 { | |
/* */ | |
} | |
/* Alternate shading for lines */ | |
li.L1, | |
li.L3, | |
li.L5, | |
li.L7, | |
li.L9 { | |
/* */ | |
background: rgb(34,34,36); | |
} | |
.download-link { | |
position: absolute; | |
display: block; | |
top: 20px; | |
right: 50px; | |
background: #5b8390; | |
color: #333; | |
padding: 12px 18px; | |
font:normal normal 20px/1.2 sans-serif; | |
border-radius: 4px; | |
box-shadow: 0 0 0 1px #406C7A; | |
text-transform: uppercase; | |
-webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out; | |
-moz-transition: background 200ms ease-in-out, color 200ms ease-in-out; | |
transition: background 200ms ease-in-out, color 200ms ease-in-out; | |
} | |
.download-link:hover { | |
background: #a87b60; | |
color: #151415; | |
} |