-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.2.1 Apply_Loans.html
144 lines (119 loc) · 3.09 KB
/
3.2.1 Apply_Loans.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
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loan Apply</title>
</head>
<body>
<section class="apply">
<div class="container">
<div class="apply-box">
<h2>Enter Details</h2>
<form action="3.2.1 Apply_Loans1.php" method="post">
<input type="text" id="name" name="name" placeholder="Enter Name" required>
<input type="tel" id="phone" name="phone" placeholder="+91 Enter Mobile Number" required>
<input type="email" id="email" name="email" placeholder="Enter Email" required>
<select id="loan-types">
<option value="personal-loan">Personal loan</option>
<option value="home-loan">Home loan</option>
<option value="car-loan">Car loan</option>
<option value="business-loan">Business loan</option>
<option value="student-loan">Student loan</option>
</select>
<select id="surety">
<option value="collateral">Collateral</option>
<option value="non-collateral">Non-Collateral</option>
</select>
<input type="submit" value="Apply">
</form>
</div>
</div>
</section>
</body>
</html>
<style>
body{
background-image: url('https://img.freepik.com/premium-photo/loan-application-form-white-background_476612-5601.jpg');
background-size: 800px 800px; /* Adjust the background image size */
background-repeat: no-repeat;
}
.apply.container {
display: flex;
justify-content: center;
}
.apply-box {
padding: 15px;
border-radius: 10px;
box-shadow: 4 10 10px rgba(0, 0, 0, 0.1);
width: 350px;
position: absolute;
top: 125px;
right: 225px;
height: 370px;
border:2px solid #000000; ;
}
.apply h2 {
font-size: 28px;
margin-bottom: 20px;
text-align: center;
}
.apply form {
display: flex;
flex-direction: column;
align-items: center;
}
.apply label {
font-size: 18px;
margin-top: 10px;
}
.apply input[type="email"],
.apply input[type="text"],
.apply input[type="tel"]{
width: 65%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #000000;
}
#loan-types {
width: 249px;
padding: 10px;
margin: 4px;
border-radius: 5px;
border: 1px solid #000000;
background-color: #ffffff;
color: #5b5959;
top:290px;
}
#surety {
width: 249px;
padding: 10px;
margin: 5px;
border-radius: 5px;
border: 1px solid #000000;
background-color: #ffffff;
color: #5b5959;
top: 300px;
}
#loan-types:focus, #surety:focus {
outline: none;
border-color: #000000; /* Change border color on focus */
}
.apply input[type="submit"] {
background-color: #ee0028;
color: #ffffff;
font-size: 17px;
cursor: pointer;
width: 40%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #ccc;
top:333px;
position: absolute;
}
.apply input[type="submit"]:hover {
background-color: #ac001d;
}
</style>