-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.37 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.37 KB
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
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frameworks Comparison</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-table.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-table.min.js"></script>
</head>
<body>
<div class="container">
<h1>Web Frameworks</h1>
<p>Table of a set of Web Applications, Stacks and Rest APIs Frameworks:</p>
<div class="table-responsive">
<table class="table" data-toggle="table" data-show-columns="true" data-click-to-select="true" data-search="true" data-show-toggle="true" data-sort-name="framework" data-url="api/data.json" >
<thead>
<tr>
<th data-field="state" data-checkbox="true"></th>
<th data-field="name" data-sortable="true" >Name</th>
<th data-field="language" data-sortable="true" >Programming<br/>Language</th>
<th data-field="version" >Current<br/>Version</th>
<th data-field="layer" data-sortable="true" >Layer</th>
<th data-field="description" >Description</th>
<th data-field="url" >URL</th>
<th data-field="pros" >Pros</th>
<th data-field="cons" >Cons</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>