-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Stock Trader</title>
<!-- ↓↓↓ Bootstrap の設定 ↓↓↓ -->
<!-- ref: https://getbootstrap.com/docs/3.3/getting-started/#template -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- ↑↑↑ Bootstrap の設定 ↑↑↑ -->
</head>
<body style="padding: 30px;">
<div id="app">
</div>
<!-- ↓↓↓ Bootstrap の設定 ↓↓↓ -->
<!-- ref: https://getbootstrap.com/docs/3.3/getting-started/#template -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- ↑↑↑ Bootstrap の設定 ↑↑↑ -->
<script src="/dist/build.js"></script>
</body>
</html>