Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
S Anjana authored and S Anjana committed Jun 21, 2017
0 parents commit 667d262
Show file tree
Hide file tree
Showing 5 changed files with 229 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#RewriteEngine on

#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://www.mangomark.com/$1 [R=301,L]

#RewriteCond %{HTTP_HOST} ^mangomark.com$ [NC,OR]
#RewriteCond %{HTTP_HOST} ^www.mangomark.com$
#RewriteCond %{REQUEST_URI} !MangoMark/public/
#RewriteRule (.*) /MangoMark/public/$1 [L]
Binary file added Heaven.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
110 changes: 110 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html>
<style>
body, html {
height: 100%;
margin: 0;
}

.bgimg {
background-image: url('Heaven.jpg');
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: black;
font-family: "Courier New", Courier, monospace;
font-size: 25px;
}

.topleft {
position: absolute;
top: 0;
left: 16px;
}

.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}

.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}

hr {
margin: auto;
width: 40%;
}
</style>
<body>

<div class="bgimg">
<div class="topleft">
<p>
<img src="logo.png" style="height:65px; width:auto;">
Mangomark.com
</p>
</div>
<div class="middle">
<h1>SEE YOU SOON!</h1>
<hr>
<p id="demo" style="font-size:45px; background-color: white; opacity:0.8;"></p>
<br /> <br />
</div>
<br /> <br />
<p> </p>
<div class="bottomleft" style="background-color: white; opacity:0.8;">
<p style="text-align:center; align:center;" align="center">Dear All Users...</p>
<p style="text-align:center; align:center;" align="center">We are currently <span style="color:red;">updating the mangomark website
to give you a more pleasurable user experience
</span>
and will back as soon as possible
</p>
<p style="text-align:center; align:center;" align="center">
Thank you! <br />
Mangomark Team.
</p>

</div>
</div>

<script>
// Set the date we're counting down to
var countDownDate = new Date("June 22, 2017 23:59:00").getTime();

// Update the count down every 1 second
var countdownfunction = setInterval(function() {

// Get todays date and time
var now = new Date().getTime();

// Find the distance between now an the count down date
var distance = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "Days: " + hours + "H: "
+ minutes + "m: " + seconds + "s";

// If the count down is over, write some text
if (distance < 0) {
clearInterval(countdownfunction);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>

</body>
</html>

110 changes: 110 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html>
<style>
body, html {
height: 100%;
margin: 0;
}
.bgimg {
background-image: url('Heaven.jpg');
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: black;
font-family: "Courier New", Courier, monospace;
font-size: 25px;
}
.topleft {
position: absolute;
top: 0;
left: 16px;
}
.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
hr {
margin: auto;
width: 40%;
}
</style>
<body>

<div class="bgimg">
<div class="topleft">
<p>
<img src="logo.png" style="height:65px; width:auto;">
Mangomark.com
</p>
</div>
<div class="middle">
<h1>SEE YOU SOON!</h1>
<hr>
<p id="demo" style="font-size:45px; background-color: white; opacity:0.8;"></p>
<br /> <br />
</div>
<br /> <br />
<p> </p>
<div class="bottomleft" style="background-color: white; opacity:0.8;">
<p style="text-align:center; align:center;" align="center">Dear All Users...</p>
<p style="text-align:center; align:center;" align="center">We are currently <span style="color:red;">updating the mangomark website
to give you a more pleasurable user experience
</span>
and will be back as soon as possible.
</p>
<p style="text-align:center; align:center;" align="center">
Thank you! <br />
Mangomark Team.
</p>
</div>
</div>
<script>
// Set the date we're counting down to
var countDownDate = new Date("June 21, 2017 23:59:00").getTime();
// Update the count down every 1 second
var countdownfunction = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now an the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "Days: " + hours + "H: "
+ minutes + "m: " + seconds + "s";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(countdownfunction);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</body>
</html>

Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 667d262

Please sign in to comment.