Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
NapoleonWils0n / ie_comment.html
Created October 31, 2012 01:23
html: ie conditional comment
<!--[if IE]><link rel="stylesheet" media="screen" type="text/css" href="ie.css" /><![endif]-->
@NapoleonWils0n
NapoleonWils0n / iphone_dial.html
Created October 31, 2012 01:25
html: iphone dial phone number
<a href="tel:02081231234" target="_self">Number here</a>
@NapoleonWils0n
NapoleonWils0n / email_link.html
Created October 31, 2012 01:27
html: email link
@NapoleonWils0n
NapoleonWils0n / rss_link.html
Created October 31, 2012 01:29
html: rss link
@NapoleonWils0n
NapoleonWils0n / skype_link.html
Created October 31, 2012 01:30
html: skype link
@NapoleonWils0n
NapoleonWils0n / auto_copyrightyear.php
Created November 1, 2012 02:37
php: auto copyright year
&copy; <?php echo date("Y") ?>
@NapoleonWils0n
NapoleonWils0n / phpinfo.php
Created November 1, 2012 02:39
php: phpinfo
<?php phpinfo() ?>
@NapoleonWils0n
NapoleonWils0n / absolute_center_image.css
Created November 1, 2012 20:20
css: absolute center image 1
html, body, #wrapper {
height:100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
#wrapper td {
vertical-align: middle;
text-align: center;
@NapoleonWils0n
NapoleonWils0n / absolute_center_image_2.css
Created November 1, 2012 20:20
css: absolute center image 2
html {
width:100%;
height:100%;
background:url(logo.png) center center no-repeat;
}
@NapoleonWils0n
NapoleonWils0n / absolute_center_image_3.css
Created November 1, 2012 20:22
css: absolute center image 3
img {
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 500px;
margin-top: -250px; /* Half the height */
margin-left: -250px; /* Half the width */
}