facebook twitter hatena line email

Html/html5/骨組み

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:16時点における127.0.0.1 (トーク)による版 (ページの作成:「 <!DOCTYPE html> <<nowiki />html> <<nowiki />head> <<nowiki />meta charset=utf-8 /> <<nowiki />title>HTML 5 web apps</title> <<nowiki />meta name="viewport" content=...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>HTML 5 web apps</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<!--[if lte IE 8]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel=stylesheet type="text/css" href="html5reset-1.6.1.css">
</head>
<body>
<header>  
    <h1>Page title</h1>
</header>
<nav>
    <!-- Navigation -->
</nav>  
<section id="intro">  
    <!-- Introduction -->
</section>
<section>
    <!-- Main content area -->
</section>
<aside>
    <!-- Sidebar -->
</aside>
<footer>
    <!-- Footer -->
</footer>
</body>
</html>