-
Notifications
You must be signed in to change notification settings - Fork 12
/
mtnc.html
62 lines (59 loc) · 1.57 KB
/
mtnc.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!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.0">
<title>WEBSITE UNDER MAINTENANCE</title>
<style>
body{
background-color:rgb(47, 47, 47);
color: white;
font-family:Arial, Helvetica, sans-serif;
text-align: center;
}
img{
margin:60px auto;
display: block;
width: 20%;
}
p{
font-size:18px;
letter-spacing:1px;
}
a{
text-decoration: none;
color:peru;
font-weight: bold;
display: block;
}
span{
margin-top: 20px;
display: block;
margin-bottom: -12px;
}
@media screen and (max-width:480px){
h1{
font-size: 20px;
}
img{
width: 55%;
}
p{
font-size: 16px;
line-height: 23px;
}
div{
padding:50px 10px 0px;
}
}
</style>
</head>
<body>
<div>
<img src="/img/canwebelogo.webp" alt="CANWEBE LOGO">
<h1>WE ARE UNDER MAINTENANCE!</h1>
<p>Our Technical Team Is Working On The Issue We will be back in service shortly<br> <span>To Reach Us</span> <br> <a href="mailto:[email protected]">[email protected]</a> </p>
</div>
</body>
</html>