-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.33 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.33 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="credit_card.css">
<title> Credit card info form</title>
</head>
<body>
<form class="credit card">
<fieldset style="width:40%" class="details">
<p><b>Step 1: Your details</b></p>
<fieldset>
<label for="myName"><b>Name</b> </label>
<input type = "text" id = "myName" size="25" class="name" placeholder="First and last name"/>
</fieldset>
<fieldset>
<div class="label"
<label for="email"><b>Email</b></label>
<input type="text" id="email" size="25" class="email" placeholder="example@domain.com">
</fieldset>
<fieldset>
<label for="phone"><b>Phone</b></label>
<input type="text" id="phone" size="25" class="phone" placeholder="Eg. +447500000000">
</fieldset>
<p><b>Step 2: Delivery address</b></p>
<fieldset>
<label for="Address" class="TextWrap"><b>Address</b></label>
<textarea rows="5" cols="24" class="TextWrap1" name="comment"></textarea>
</fieldset>
<fieldset>
<label for="code" ><b>Post code</b></label>
<input type="text" id="code" size="25" class="code">
</fieldset>
<fieldset>
<label for="country" ><b>Country</b></label>
<input type="text" id="country" size="25" class="country">
</fieldset>
<p><b>Step 3: Card details</b></p>
<fieldset>
<p> Card type </p>
<label for="visa" class="visa"> <b>Visa </b></label>
<input type="radio" id="visa" name="card company" value="visa">
<label for="AmEx" class="AmEx"> <b>AmEx</b></label>
<input type="radio" id="AmEx" name="card company" value="AmEx">
<label for="master" class="master"> <b>Mastercard </b></label>
<input type="radio" id="master" name="card company" value="mastercard"><br>
</fieldset>
<fieldset>
<label for="card_number"><b>Card number</b></label>
<input type="text" id="card_number" size="25" class="card_number">
</fieldset>
<fieldset>
<label for="Sec_code"><b>Security code</b></label>
<input type="text" id="Sec_code" size="25" class="sec_code">
</fieldset>
<fieldset>
<label for="name_on_card"><b>Name on card</b></label>
<input type="text" id="name_on_card" size="25" class="name_on_card" placeholder="Exact name as on the card">
</fieldset><br>
<input type="submit" value="BUY IT!" class="button">
</fieldset>
</form>
</body>
</html>