-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.59 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.59 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>PlainDSP</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous" />
<style>
html,
body {
height: 100%;
background-color: #093c76;
}
@media (min-width: 992px) {
body {
background-image: url('background.svg');
background-repeat: no-repeat;
background-position: right top;
}
}
@media (max-width: 767.98px) {
.display-4 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container-fluid text-white text-center h-100">
<div class="row h-100 align-items-center">
<div class="col">
<div>
<img src="hl2.svg" width="150" class="img-fluid m-3" />
<h1 class="display-4">Sorry, the PlainDSP site is now closed</h1>
<p class="lead">
For support, please contact us at <a href="mailto:support@hl2.com">support@hl2.com</a>
</p>
</div>
<div class="mt-5">
<h1 class="display-4">Let's build your next project together!</h1>
<p class="lead">
Please contact <a href="mailto:sales@hl2.com">sales@hl2.com</a>
for details, go to <a href="https://hl2.com">https://hl2.com</a>
</p>
</div>
</div>
</div>
</body>
</html>