This file contains hidden or 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
html {margin: 0; padding: 0;} | |
body {margin: 0; padding: 0; | |
background: rgb(102,102,102); color: rgb(235,235,235); | |
font: 12px/1.5 Helvetica, sans-serif; | |
} | |
article {display: block; margin: 0; padding: 0;} | |
aside {display: block; margin: 0; padding: 0;} | |
header {display: block; margin: 0; padding: 0;} | |
hgroup {display: block; margin: 0; padding: 0;} | |
figure {display: block; margin: 0; padding: 0} |
This file contains hidden or 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
RewriteEngine On | |
RewriteCond %{HTTP_HOST} ^your-site.com [NC] | |
RewriteRule ^(.*)$ http://www.your-site.com/$1 [L,R=301] |
This file contains hidden or 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
<IfModule mime_module> | |
AddType application/octet-stream .csv | |
AddType application/octet-stream .xls | |
AddType application/octet-stream .doc | |
AddType application/octet-stream .avi | |
AddType application/octet-stream .mpg | |
AddType application/octet-stream .mov | |
AddType application/octet-stream .mp4 | |
AddType application/octet-stream .m4v | |
AddType application/octet-stream .mp3 |
This file contains hidden or 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
<FilesMatch "\.(?i:pdf|mov|mp4|m4v)$"> | |
ForceType application/octet-stream | |
Header set Content-Disposition attachment | |
</FilesMatch> |
This file contains hidden or 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
<html> | |
<body> | |
<table id="wrapper"> | |
<tr> | |
<td><img src="logo.png" alt="" /></td> | |
</tr> | |
</table> | |
</body> | |
</html> |
This file contains hidden or 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 rel="apple-touch-icon" href="/apple_touch_icon.png" /> |
This file contains hidden or 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 rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> |
This file contains hidden or 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
<video controls preload="none" poster="/images/video.png"> | |
<source src="mobile.mp4" type="" media="screen and (max-device-width:320px)"> | |
<source src="desktop.mp4" type="" media="screen and (min-device-width:321px)"> | |
</video> |
This file contains hidden or 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
<article> | |
<header class="article-header"> | |
<h1 class="title">Title</h1> | |
</header> | |
<div class="content"></div> | |
<footer class="article-info meta"></footer> | |
</article> |
This file contains hidden or 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
<figure class="block"> | |
<img src="image.jpg" alt="image"/> | |
<legend class="">Image Caption | |
<small>Photo copyright text</small> | |
</legend> | |
</figure> |
OlderNewer