-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (87 loc) · 4.09 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!Doctype html>
<html>
<head>
<title>MILAN</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<section id="banner">
<img src="images/milan.png" class="logo">
<div class="banner-text">
<h1> Payment Studio </h1>
<p> payment with secure wallet with bitcoin wallet </p>
<div class="banner-btn">
<a href="https://app.noah.com/wallet"> <span></span>Find Out</a>
<a href="bitcoinstory.html"> <span></span>Read More</a>
<a href="https://app.noah.com/?referralCode=itsnehakumari"> <span></span>Sign Up</a>
</div>
</div>
</section>
<div id="sideNav">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
</nav>
</div>
<div id="menuBtn">
<img src="images/menu.png" id="menu">
</div>
<!--Features-->
<section id="feature">
<div class="title-text">
<p>FEATURES</p>
<h1>Why will you donate here? </h1>
</div>
<div class="feature-box">
<div class="features">
<h1>Welcome To MILAN</h1>
<div class="features-desc">
<div class="features-icon"></div>
<div class="feature-text">
<P><strong>
i am trying to start a node for payment of bitcoin in india so donate pleases.<br> droplets of water make pond as well as even oceans.<br>
Sign up for a wallet which provide free transaction of btc for both main chain and lightning network for free click on the sign up button
above to sign up.<br> please do this as soon as possible cause this offer will close soon and refer it to 22 people and get lifetime free transaction on noah.
</strong></P>
<p><strong>please tip me in my address below if you liked my content, currently i am working on it. soon it will be function and well maintained.</strong></p>
<p><strong>Thank you</strong></p>
<p> <strong>my addresses are:- <br>[email protected] of zbd wallet <br> [email protected]</strong></p>
</div>
</div>
</div>
<div class="features-img">
<img src="images/bitcoin2.png">
<img src="images/Wallet of Satoshi.jpg">
</div>
</div>
</section>
<script>
var menuBtn = document.getElementById("menuBtn")
var sideNav = document.getElementById("sideNav")
var menu = document.getElementById("menu")
sideNav.style.right = "-250px";
menuBtn.onclick = function(){
if(sideNav.style.right == "-250px"){
sideNav.style.right = "0";
menu.src = "images/close.png";
}else{
sideNav.style.right = "-250px";
menu.src = "images/menu.png";
}
}
function myFunction(){
alert("Sorry, But this site is under development. Thanks for visiting.");
}
myFunction();
</script>
</body>
</html>