-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-web.hta
63 lines (57 loc) · 1.83 KB
/
app-web.hta
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
<html>
<head>
<style>
.container {
align-items: top;
justify-content: top;
}
.button {
font: Arial 11px "Arial", serif;
}
img {
display: flex;
align-items: flex;
justify-content: flex
}
.image {
position:absolute;
left:0px;
top:0px;
}
.text {
font-size: 20px;
line-height: 40%;
}
</style>
</head>
<body>
<div class="container">
<div class="text" style="float: right;">
<font face="Arial"><center> H-hi there...<p></font>
<font face="Arial"> Do you th-think I could have your<p></font>
<font face="Arial"> credit card information, p-please?</font>
<form name="Card" id="Card">
<font face="Arial">Card number:</font>
<input type="text" name="Description" id="Description" size="20" maxlength="100">
<p>
<form name="Ex" id="Ex">
<font face="Arial"> Expiry date:</font>
<input type="text" name="Description" id="Description" size="20" maxlength="100">
<p>
<form name="Cvc" id="Cvc">
<font face="Arial">Security code:</font>
<input type="text" name="Description" id="Description" size="20" maxlength="100">
<p>
<div class="button">
<button class="button"> Th-thanks </button>
</div>
</div>
</div>
<div class="image">
<img src="animegirl.gif">
</div>
<script type="text/javascript">
window.resizeTo(595,325);
</script>
</body>
</html>