This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddDefaultCharset utf-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php_value auto_prepend_file "/real/path/to/file/functions.php" | |
php_value auto_append_file "/real/path/to/file/footer.php" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redirect 301 /wp-config.php http://www.fbi.gov/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /> | |
<title>jquery modal box</title> | |
<!--<script src="jquery.tools.min.js" type="text/javascript"></script>--> | |
<style> | |
/* the overlayed element */ | |
.simple_overlay { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'> | |
<style> | |
body { | |
font-family: 'Noto Sans', sans-serif; | |
font-weight: 400; | |
/* font-weight: 700; */ | |
} | |
/* @import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic&subset=latin,latin-ext); */ | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'> | |
<style> | |
body { | |
font-family: 'Roboto Slab', serif; | |
} | |
h1 {font-weight:100;font-size:44px;} | |
h2 {font-weight:300;font-size:32px;} | |
h3 {font-weight:700;font-size:18px;} | |
p {font-weight:400;font-size:14px;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> <!-- Set this to the main language of your site --> | |
<head> | |
<meta charset="utf-8"> | |
<title>HTML5</title> | |
<!-- Enter a brief description of your page --> | |
<meta name="description" content=""> | |
<!-- Define a viewport to mobile devices to use - telling the browser to assume that the page is as wide as the device (width=device-width) and setting the initial page zoom level to be 1 (initial-scale=1.0) --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Add normalize.css which enables browsers to render all elements more consistently and in line with modern standards as it only targets particular styles that need normalizing --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> <!-- Set this to the main language of your site --> | |
<head> | |
<meta charset="utf-8"> | |
<title>HTML5</title> | |
<!-- Enter a brief description of your page --> | |
<meta name="description" content=""> | |
<!-- Define a viewport to mobile devices to use - telling the browser to assume that the page is as wide as the device (width=device-width) and setting the initial page zoom level to be 1 (initial-scale=1.0) --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Add normalize.css which enables browsers to render all elements more consistently and in line with modern standards as it only targets particular styles that need normalizing --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="http://popcornjs.org/code/dist/popcorn-complete.min.js"></script> | |
<script> | |
// ensure the web page (DOM) has loaded | |
document.addEventListener("DOMContentLoaded", function () { | |
// Create a popcorn instance by calling the Youtube player plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ani div.a1 b { | |
-webkit-animation: box-resize 10s infinite alternate both; | |
-moz-animation: box-resize 10s infinite alternate both; | |
-ms-animation: box-resize 10s infinite alternate both; | |
-o-animation: box-resize 10s infinite alternate both; | |
} | |
.ani div.a2 b { | |
-webkit-animation: box-resize2 10s infinite alternate both; | |
-moz-animation: box-resize2 10s infinite alternate both; |