-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrept.html
57 lines (48 loc) · 1.49 KB
/
scrept.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
<!DOCTYPE html>
<html>
<head>
<title>Meta Subscription Page</title>
<style>
body {
background-image: url('billie-dollar-money-background_1150-749.jpg'); /* Replace 'cool-background.jpg' with the path to your desired background image */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
color: white; /* Set the text color to white for better visibility */
}
/* Optional styles to enhance the appearance of the form */
form {
width: 300px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.7);
padding: 35px;
border-radius: 10px;
}
h1, label {
text-align: center;
}
input[type="submit"] {
display: block;
margin: 20px auto;
}
</style>
</head>
<body>
<h1>Subscribe to Meta Services</h1>
<form action="File2.html" method="POST">
<label for="subscription">Choose a Subscription Plan:</label>
<select name="subscription" id="subscription">
<option value="pro">Pro Subscription (25IQD/month)</option>
</select>
<br><br>
<label for="payment-method">Select Payment Method:</label>
<select name="payment-method" id="payment-method">
<option value="fastpay">FastPay</option>
</select>
<br><br>
<input type="submit" value="Subscribe">
</form>
<br>
<a href="File2.html"></a> <!-- Adding a hyperlink to File2.html -->
</body>
</html>