-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoload.html
73 lines (48 loc) · 1.45 KB
/
autoload.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
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<style type="text/css">
h1{
font-family: sans-serif;
color: blueviolet;
font-size: 25px;
//margin: 30px;
width: 500px;
height: 100px;
margin: auto;
margin-top: 50px;
}
.popup{
width: 400px;
height: 300px;
text-align: center;
padding: 30px;
background-color: rgba(0, 0, 0, .5);
font-family: "Trebuchet MS",Arial,sans-serif;
color: white;
visibility: hidden;
position: absolute;
top: 100px;
left: 40%;
}
</style>
</head>
<body onload="downlord()">
<h1>Disaster Managenment Demo Page</h1>
<div class="popup" id="popup">
Hey Welcome to our site .We had made Accessing us more easy.<br>
Downlord our Android App. And get All services in your phone.
<a href="downlord/d_andaman.apk">Downlord</a><br><br>
<button onclick="close()">close</button>
</div>
</body>
<script type="text/javascript">
var downlord=function(){
var pop=document.getElementById("popup");
pop.style.visibility="visible";
};
var close=function(){
var pop=document.getElementById("popup");
pop.style.visibility="hidden";
};
</script>
</html>