-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 834 Bytes
/
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
32
33
34
<!DOCTYPE html>
<head>
<title>Table Widget</title>
<style>
body {
padding-top: 50px;
}
#app {
display: flex;
justify-content: space-evenly;
}
#even_numbers {
display: flex;
flex-direction: column;
</style>
</head>
<body>
<div id="app">
<div id="fruits"></div>
<div id="persons"></div>
<div id="prime_squares"></div>
<div id="even_numbers"></div>
</div>
</body>
<script src="./data_helpers.js"></script>
<script src="./style_helpers.js"></script>
<script src="./dom_helpers.js"></script>
<script src="./table_helpers.js"></script>
<script src="./integer_table_helper.js"></script>
<script src="./single_column_table_helper.js"></script>
<script src="./table.js"></script>