-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 858 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
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Data Science Seville</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="static/favicon.ico">
<style type="text/css">
html, body, div.horizontal {
margin: 0;
height: 100%;
width: 100%;
}
body {
background-color: #FAFAFA;
}
div.horizontal {
display: flex;
justify-content: center;
}
div.vertical {
display: flex;
flex-direction: column;
justify-content: center;
}
.smaller {
height: 400px;
width: 400px;
}
</style>
</head>
<body>
<div class="horizontal">
<div class="vertical">
<img class="smaller" src="static/dss_logo.png"/>
</div>
</div>
</body>
</html>