-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlegalInformation.html
41 lines (31 loc) · 1.18 KB
/
legalInformation.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
35
36
37
38
39
40
41
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="links.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<body>
<h1> Legal Information </h1>
<div class="container">
<div class="col-sm-3"> <a href="index.html"> Overview </a> <br> </div>
<div class="col-sm-3"> <a href="newTodo.html"> Create a new TODO </a> <br> </div>
<div class="col-sm-3"> <a href="todo.html"> Edit TODO </a> <br> </div>
<div class="col-sm-3"> <a href="legalInformation.html"> Legal Information</a> </div>
</div>
<div class="container">
<div class="col-md-6">
<h2>Legal Information</h2>
<p>
This is a dummy ToDo-List-website.<br />
made by:<br />
Jonathan Bader, Gereon Dusella<br />
Programmierpraktikum Soziale Netzwerke SoSe 2016<br />
Fachgebiet Komplexe und Verteilte IT Systeme (CIT) TU Berlin
</p>
</div>
</div>
</body>
</head>
</html>