-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (58 loc) · 1.45 KB
/
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
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
66
67
68
69
70
71
72
<!DOCTYPE HTML>
<html>
<head>
<title>ORTHENSE</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.row-center {
display: flex;
justify-content: center;
align-items: center;
}
.content {
width: 70%;
max-width: 1080px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background: #222;
color: #fff;
height: 48px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
a {
color: #fff;
}
</style>
</head>
<body>
<div class="row-center">
<div class="content card">
<div class="card-image">
<img src="images/surgery.jpg">
<span class="card-title">Opération en cours</span>
</div>
<div class="card-content">
<p>Désolé ORTHENSE est actuellement en maintenance, nous revenons vite.</p>
</div>
<div class="card-action">
<a href="#">www.digikare.com</a>
</div>
</div>
</div>
<footer id="footer">
<a href="mailto:[email protected]" class="icon fa fa-envelope-o"></a>
| © digikare 2018 |
<span>
</span>
</footer>
</body>
</html>