1<!DOCTYPE html>
2<html>
3<style>
4body, html {
5 height: 100%;
6 margin: 0;
7}
8
9.bgimg {
10 background-image: url('/w3images/forestbridge.jpg');
11 height: 100%;
12 background-position: center;
13 background-size: cover;
14 position: relative;
15 color: white;
16 font-family: "Courier New", Courier, monospace;
17 font-size: 25px;
18}
19
20.topleft {
21 position: absolute;
22 top: 0;
23 left: 16px;
24}
25
26.bottomleft {
27 position: absolute;
28 bottom: 0;
29 left: 16px;
30}
31
32.middle {
33 position: absolute;
34 top: 50%;
35 left: 50%;
36 transform: translate(-50%, -50%);
37 text-align: center;
38}
39
40hr {
41 margin: auto;
42 width: 40%;
43}
44</style>
45<body>
46
47<div class="bgimg">
48 <div class="topleft">
49 <p>Logo</p>
50 </div>
51 <div class="middle">
52 <h1>COMING SOON</h1>
53 <hr>
54 <p>35 days left</p>
55 </div>
56 <div class="bottomleft">
57 <p>Some text</p>
58 </div>
59</div>
60
61</body>
62</html>
63