-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (43 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
53 lines (43 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p id="p1"></p>
<p id="p2"></p>
<p id="p3"></p>
<label id="myLabel"> Enter your name </label> <br>
<input type="text" id="myText"> <br>
<button type="button" id="myButton"> Submit </button> <br><br>
<label id="aLabel"> Side A: </label><br>
<input type="text" id="aTextBox"><br>
<label id="bLabel"> Side B: </label><br>
<input type="text" id="bTextBox"><br>
<button type="button" id="submitButton"> Submit </button><br>
<label id="cLabel"></label><br>
<label id="countLabel"> 0 </label> <br>
<button id="decreaseBtn"> Decrease </button>
<button id="resetBtn"> Reset </button>
<button id="increaseBtn"> Increase </button> <br>
<label id="uLabel"></label><br>
<label id="wLabel"></label><br>
<label id="tLabel"></label><br>
<button type="button" id="rollButton"> Roll </button> <br><br>
<label for="myCheckBox"> Subscribe </label>
<input type="checkbox" id="myCheckBox"> <br>
<label for="visaBtn"> Visa </label>
<input type="radio" name="card" id="visaBtn">
<label for="mastercardBtn"> MasterCard </label>
<input type="radio" name="card" id="mastercardBtn">
<label for="paypalBtn"> PayPal </label>
<input type="radio" name="card" id="paypalBtn"><br>
<button id="myButton1"> Submit </button><br>
<label id="myRectangle"></label>
<script src="index.js"></script>
</body>
</html>