Skip to content

Instantly share code, notes, and snippets.

@chikoski
Last active December 18, 2015 08:19
Show Gist options
  • Save chikoski/5753411 to your computer and use it in GitHub Desktop.
Save chikoski/5753411 to your computer and use it in GitHub Desktop.
論プロ第10回で作成するアプリのHTML修正版
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Clock</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
</head>
<body id="body">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<h1 class="brand">Clock</h1>
</div>
<div>
</div>
<div class="container-fluid">
<div id="clock"></div>
</div>
<script src="js/jquery-2.0.2.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment