-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 799 Bytes
/
index.html
File metadata and controls
27 lines (23 loc) · 799 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My website</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<input type="checkbox" id="myCheckBox"/>
<label htmlFor="myCheckBox">Subscribe</label><br /><br>
<input type="radio" id="visaBtn" name="card" />
<label for="visaBtn">Visa</label><br>
<input type="radio" id="masterCardBtn" name="card" />
<label for="masterCardBtn">MasterCard</label><br>
<input type="radio" id="payPalBtn" name="card" />
<label for="payPalBtn">PayPal</label><br><br>
<button type="submit" id="mySubmit">SUBMIT</button>
<p id="subResult"></p>
<p id="paymentResult"></p>
<script src="index.js"></script>
</body>
</html>