forked from lurenzsgp/IPC-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
65 lines (52 loc) · 1.46 KB
/
404.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pagina non trovata!</title>
<link rel="icon" type="image/png" href="img/logo.png">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/mycss.css">
<style type="text/css">
.logo{
width: 150px;
height: auto;
margin: 15px 20px 15px 0px;
float: left;
background-color: #383448;
border-radius: 100%;
-webkit-filter: saturate(.4);
box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.5);
}
.footer{
position: absolute;
left: 30%;
right: 30%;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<div class="row">
<div class="col-md-4">
<img class="logo" src="/img/logo.png">
</div>
<div class="col-md-8">
<h1>Oops!</h1>
<h4>You're looking for something that doesn't actually exist.</h4>
<p>
<h3>Try going to our <a href='/index'>homepage</a>.</h3>
</p>
</div>
</div>
</div>
</div>
<footer class="footer">
<h4>The Barbarian Steppe</h4>
<span>Alice Valentini, Lorenzo Cazzoli, Luca Casini, Manfredi Giordano</span>
<br>
<span>Project for <em>Interazione Persona-Computer</em> exam, University of Bologna, academic year 2015-2016</span>
</footer>
</body>
</html>