-
Notifications
You must be signed in to change notification settings - Fork 0
/
premium.html
84 lines (84 loc) · 2.51 KB
/
premium.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="premium.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Money Mentor</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
</head>
<body>
<!-- Form -->
<section id="contact">
<div id="contact-box">
<form action="">
<div class="form-group">
<label for="age">Age</label>
<input
type="text"
name="age"
id="age"
placeholder="Enter Your Age"
/>
</div>
<div class="form-group">
<label for="location">Location </label>
<input
type="text"
name="location"
id="location"
placeholder="Enter Your Location"
/>
</div>
<div class="form-group">
<label for="family">Family Members </label>
<input
type="text"
name="family"
id="family"
placeholder="Enter the number of family members"
/>
</div>
<div class="form-group">
<label for="investment">Investment </label>
<input
type="text"
name="investment"
id="investment"
placeholder="Do you have any investments? (Yes/No). If yes, please specify."
/>
</div>
<div class="form-group">
<label for="debt">Debts </label>
<input
type="text"
name="debt"
id="debt"
placeholder="Do you have any debts? (Yes/No). If yes, please specify."
/>
</div>
<div class="form-group">
<button class="text-white font-bold py-2 px-4 rounded submitbtn">
<a href=""></a>
Submit
</button>
</div>
</form>
</div>
</section>
</body>
</html>