-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
162 lines (142 loc) · 4.53 KB
/
test.html
File metadata and controls
162 lines (142 loc) · 4.53 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<html>
<head>
<title> </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="files/css/reset.css">
<link href="files/css/font-awesome.min.css" rel="stylesheet">
<link href="files/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="files/animate/animate.css" />
<link rel="stylesheet" href="files/animate/set.css" />
<link href='files/fonts/sans.css' rel='stylesheet' type='text/css'>
<style>
#backs{
background-image:url("");
background-size: cover;
}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
margin-left: -5%;
}
.button5 {
background-color: transparent;
color: black;
border: 2px solid #555555;
}
.button5:hover {
background-color: #555555;
color: white;
}
#lines{
margin-top: 0px;
width:100%;
}
#bank-name{
width: 550px;
}
#bank-name img{
width: 200px;
margin-top:0px;
}
.nav-div{
width:100%;
height:70px;
background:white;
}
.nav-div ul{
position:absolute;
list-style: none;
}
.nav-div li{
float:left;
display: inline-block;;
}
.nav-div a{
font: Roboto,Arial,Helvetica;
margin-top:15px;
text-decoration: none;
width:150px;
color: black;
display: block;
padding: 10px;
text-align: center;
}
.nav-div a:hover{
color: #12DAD1;
text-decoration: none;
}
.nav-div a:active{
color: #12DAD1;
}
@font-face {
font-family: myFirstFont;
src: url(files/css/Redressed.ttf);
font-weight: bold;
}
#area{
font-family: myFirstFont;
font-size: 70px;
text-align: center;
}
</style>
</head>
<body id="backs">
<div id="lines-div">
<img id="lines" src="images/lines1.png">
</div>
<div class="nav-div">
<ul>
<li id="bank-name"><img src="images/logo2.png"> </li>
<li><a href="1.html">Home</a></li>
<li><a href="transfer.html">Transfer</a></li>
<li><a href="cards.html">Cards</a></li>
<li><a href="#customer">Profile</a></li>
<li><a id="#">Log Out</a></li>
</ul>
</div>
<div id="area">
<b>APPLY FOR CARD</b>
<div class="col-sm-12" style="font-size: 27px;">
UNITY Bank’s cards are an ideal choice for safe, affordable and smart form of transactions. These cards are a hassle-free way of paying bills quickly, shopping safely and making money-savvy decisions. Do you want to earn miles and get discounts or cash back? Apply for UNITY’s credit cards online. Do you want smart money on international travel? Use our pre-paid Forex cards. Be it a retail store, petrol pump, movie complex, shopping website or online travel portals, UNITY bank’s debit cards, credit cards will be sure to bring a smile on your face with a host of discounts, cash-backs and rewards.
</div>
<div class="col-sm-12" style="height:25px"></div>
<div class="col-sm-6" style="font-size:20px; text-align:justify;">
<center><b>CREDIT CARD</b></center>
<ul style="margin-left: 100px;">
<li>Customised credit cards to match your needs</li>
<li>State-of-the-art security for online transactions</li>
<li>Great discounts, cash back offers and reward points 365 days a year</li>
<li>Quick credit with easy EMIs</li>
</ul>
<center> <input type="radio" class="button button5" value="CREDIT CARD" > Apply for Credit Card<br><br>
</center>
</div>
<div class="col-sm-6" style="font-size:20px; text-align:justify;">
<center><b>DEBIT CARD</b></center>
<ul style="margin-left: 100px;">
<li>Exciting cash back, discounts, miles and waivers throughout the year </li>
<li>Exclusively tailored debit cards that suits your schedule and lifestyle</li>
<li>Multi-layered online and offline protection </li>
<li>Card security for misplaced or stolen cards</li>
</ul>
<center> <input type="radio" class="button button5" value="CREDIT CARD" > Apply for Credit Card<br><br>
</center>
</div>
<br>
<center style="font-size:20px;">
ENTER FOUR DIGIT PIN <input type="text" maxlength="4" style="width:60px"; oninput="this.value=this.value.replace(/[^0-9]/g,'');"></center>
<input type="submit" class="button button5" value="APPLY">
</div>
</body>
</html>