-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CIVIS - VGWB</title>
<meta name="description" content="Malaga 18/19 November - Conferencia internacional sobre videojuegos e impacto social">
<meta name="keywords" content="Conferencia, videogames, malage">
<meta name="author" content="Videogames Without Borders">
<meta property="og:title" content="Landing Page - Your Project Name">
<meta property="og:description" content="Malaga 18/19 November - Conferencia internacional sobre videojuegos e impacto social">
<meta property="og:image" content="img/civis-landing.png">
<meta property="og:url" content="https://civis.vgwb.org/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="CIVIS - VGWB">
<meta name="twitter:description" content="Malaga 18/19 November - Conferencia internacional sobre videojuegos e impacto social">
<meta name="twitter:image" content="img/civis-landing.png">
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background-color: #00B6EB;
}
.fullscreen-bg {
background: url('img/civis-landing.png') no-repeat center center fixed;
background-size: contain;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div class="fullscreen-bg"></div>
</body>
</html>