Skip to content

Instantly share code, notes, and snippets.

@WenLiangTseng
WenLiangTseng / javascript_placement.js
Created July 22, 2013 02:30
JavaScript 和 CSS引用基本格式
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<link type="text/css" rel="stylesheet" media="all" href="http://domain.com/css/style.css" />
@WenLiangTseng
WenLiangTseng / document_ready_function.js
Created July 22, 2013 02:27
JavaScript內嵌+Document.Ready.Function
<script type="text/javascript">
jQuery('document').ready(function($) {
// Handler for .ready() called.
});
</script>
@WenLiangTseng
WenLiangTseng / favicon.php
Last active December 20, 2015 01:39
favicon 寫法
<!-- PNG -->
<link rel="icon" type="image/png" href="http://www.example.com/png-favicon.png" />
<!-- JPG -->
<link rel="icon" type="image/jpeg" href="/jpeg-favicon.jpg" />
<!-- GIF -->
@WenLiangTseng
WenLiangTseng / basic.css
Created July 22, 2013 00:33
CSS內嵌基本格式
<style type="text/css">
body {
font-size: 10pt;
line-height: 1.2em
}
</style>