ね、ネタが無い…
取り合えず、自分がサイトを作る時に最初に指定するCSSとXTHMLでも上げます。
http://css-happylife.com/template/default/style.css
CSS
@charset "utf-8";
/*
Share Style [
----------------------------------------------------------- */
* {
margin:0;
padding:0;
}
body {
background:url(../img/share/bg.gif) repeat-y center top;
font-family:Verdana, "MS Pゴシック", sans-serif;
font-size:80%;
}
h1,h2,h3,h4,h5,h6 {
font-size:85%;
font-weight:normal;
margin:0;
padding:0;
}
p,li,dt,dl {
line-height:160%;
}
p {
margin:0 0 1em 0;
}
li {
list-style-type:none;
}
img {
border:0;
}
hr {
display:none;
}
.clear {
clear:both;
}
/*
Link Color [
----------------------------------------------------------- */
a {
text-decoration:none;
}
a:link {
}
a:visited {
}
a:hover {
}
a:active {
}
XTHML utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> </title> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta http-equiv="content-style-type" content="text/css" /> <meta http-equiv="content-script-type" content="text/javascript" /> <link rel="index" href="/index.shtml" /> <link rel="stylesheet" href="css/master.css" type="text/css" media="all" /> <script src="js/exlink.js" type="text/javascript"></script> </head> <body> <div id="container"> <!-- ] container END --></div> </body> </html>
基本はこの位しか流用はしてないと思う今日この頃。
昔と比べるとコメントの書き方とか色々変わったなぁ~
