-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsplash.html
More file actions
35 lines (31 loc) · 820 Bytes
/
splash.html
File metadata and controls
35 lines (31 loc) · 820 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body,
html {
height: 100%;
margin: 0;
font: 400 15px/1.8 "Lato", sans-serif;
color: #000;
background: #000;
}
.bgimg-1 {
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
background-image: url("logo.gif");
height: 100%;
}
</style>
</head>
<body>
<a href="mailto:help@devopsacademy.com.au?Subject=Need%20Help" target="_top">
<div class="bgimg-1">
</div>
</a>
</body>
</html>