Last active
December 18, 2015 08:19
-
-
Save chikoski/5753411 to your computer and use it in GitHub Desktop.
論プロ第10回で作成するアプリのHTML修正版
This file contains hidden or 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> | |
<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