1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5 <title></title>
6 </head>
7 <body>
8 <br>
9 <br>
10 <br>
11 <br>
12 <br>
13 <br>
14 <br>
15 <br>
16 <br>
17 <br>
18 <br>
19 <div class="myDiv">
20 <h1>The website's is under construction</h1>
21 <h2>Coming Soon</h2>
22 </div>
23
24 <style>
25 body{
26 background-color: #ded883;
27 text-align: center;
28 }
29
30 .myDiv{
31 border: 2px solid lightpink;
32 color: solid cyan;
33 font-family: bold;
34
35 }
36
37 .myDiv:hover{
38
39 background-color: lime;
40 color: black;
41 font-family: chiller;
42 }
43
44 </style>
45 </body>
46</html>
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