Last active
October 21, 2015 06:55
-
-
Save orleika/313eda54d55b0b8ac2fb to your computer and use it in GitHub Desktop.
HTMLテンプレート
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content=""> | |
<meta property="og:type" content=""> | |
<meta property="og:title" content=""> | |
<meta property="og:description" content=""> | |
<meta property="og:site_name" content=""> | |
<meta property="og:url" content=""> | |
<meta property="og:image" content=""> | |
<meta name="twitter:card" content=""> | |
<meta name="twitter:site" content=""> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<link rel="shortcut icon" href="favicon.ico"> | |
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
<link rel="stylesheet" href="css/bootstrap.css"> | |
<link rel="stylesheet" href="css/style.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> | |
<title>title</title> | |
</head> | |
<body> | |
<header role="banner"> | |
<h1 class="page-header">title</h1> | |
<nav role="navigation"> | |
<ul> | |
<li></li> | |
</ul> | |
</nav> | |
</header> | |
<main role="main" class="container"> | |
<article role="article"> | |
<section></section> | |
</article> | |
</main> | |
<footer role="contentinfo"> | |
<small>© 2015 xxx inc.</small> | |
</footer> | |
<script> | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
ga('create', '', 'auto'); | |
ga('send', 'pageview'); | |
</script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="js/bootstrap.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment