-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 935 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>18-10</title>
<link rel="canonical" href="https://18-10.fr">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta name="google-site-verification" content="" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#FFF700">
<meta name="apple-mobile-web-app-title" content="18-10">
<style>
body, html {
height: 100%;
margin: 0;
}
.bg {
/* The image used */
background-image: url("logo.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<div class="bg"></div>
</body>
</html>