-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (47 loc) · 1.18 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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bulletin</title>
<link href="promosite/css/bootstrap.css" rel="stylesheet">
</head>
<style>
html,
body {
width: 100%;
height: 100%;
}
#outer {
position: relative;
width: 100%;
height: 100%;
background: #34495e;
}
#outer #container {
background-color: #f3f3f3;
padding: 15px 25px;
width: 100%;
max-width: 300px;
position: absolute;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
}
</style>
<body>
<div id="outer">
<div id="container" class="text-center">
<h1>Bulletin</h1>
<br>
<h5>Check out the prototype or our promotional site:</h5>
<br>
<a href="prototype/index.html" class="btn btn-md btn-default">Prototype Demo</a>
<br><br>
<a href="promosite/index.html" class="btn btn-md btn-default">Promotional Site</a>
<br><br>
</div>
</div>
</body>
</html>