js-marketplace-2014/index.html

32 lines
769 B
HTML
Raw Normal View History

2013-08-12 02:23:24 +00:00
<!doctype html>
<html>
<head>
<title>JS Marketplace</title>
<meta charset="utf-8">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
2013-10-17 14:50:51 +00:00
<!-- <script src="bootstrap/js/bootstrap.min.js"></script> -->
2013-10-17 15:38:47 +00:00
<script src="jquery-2.0.3.min.js"></script>
2013-08-12 02:23:24 +00:00
<script src="marketplace.js"></script>
2013-10-17 14:50:51 +00:00
<script src="index.js"></script>
2013-08-12 02:23:24 +00:00
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<h1>JS Marketplace</h1>
<p>
Hello, world.
</p>
2013-10-17 15:38:47 +00:00
<p>
<button id="testButton">Test button</button>
<button id="testButton2">Test button 2</button>
2013-10-17 15:38:47 +00:00
</p>
2013-08-12 02:23:24 +00:00
</div>
</div>
</div>
</body>
</html>