-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.04 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
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="ru" dir="ltr" manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<title>crosses-lesson</title>
<link rel="stylesheet prefetch" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine.min.css"/>
<style>
.tic-tac-toe {
width: 62px;
height: 62px;
table-layout: fixed;
}
.tic-tac-toe tr td {
width: 20px;
height: 20px;
font-size: 14px;
text-align: center;
}
</style>
</head>
<body>
<div id="app"></div>
<br/>
<script src="https://unpkg.com/vue@latest/dist/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine-html.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/boot.min.js"></script>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="test.js"></script>
</body>
</html>