-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·62 lines (48 loc) · 1.18 KB
/
index.html
File metadata and controls
executable file
·62 lines (48 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Project Management Kunstmaan</title>
<meta name="description" content="PM Tool Kunstmaan">
<meta name="viewport" content="width=device-width">
<!--CSS-->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Project Managment Tool</h1>
</header>
<div role="main" class="main">
<table class="project_table">
<thead>
<tr>
<th>Project</th>
<th>Status</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="project.html">Club Brugge</a></td>
<td>live</td>
<td>-</td>
</tr>
<tr>
<td><a href="project.html">Telenet Shakers</a></td>
<td>dev</td>
<td>95%</td>
</tr>
<tr>
<td><a href="project.html">Jotun</a></td>
<td>dev</td>
<td>25%</td>
</tr>
</tbody>
</table>
</div>
<footer>
Voorstel PM-tool
</footer>
</body>
</html>