CSSで文字サイズを変更する

外部CSSファイルの読み込み

  • index.htmlと同一階層に「css」フォルダーを作成し、style.cssを作成し保存します
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/style.css">
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<style>
  article, aside, dialog, figure, footer, header,
  main, menu, nav, section { display: block; }
</style>
<script src=""></script>
</head>
<body>
	
</body>
</html>
reset.css
  • リセットの考え方が、いろいろあって迷うことが多いと思います
  • 初心者は、自分がマークアップした要素に対して空きのみ設定することとします
/* reset */
html, body, h1, h2, h3, p, ul, li, table, tr, th, td, caption  {
  margin: 0;
  padding: 0;
}