-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathe.html
110 lines (106 loc) · 3.31 KB
/
e.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CricStat</title>
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playwrite+AU+QLD:[email protected]&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="e.css" />
</head>
<body style="display: flex; justify-content: center">
<div style="width: 50%; height: auto">
<div
class="container mt-5 px-5"
style="
background-color: rgba(0, 0, 0, 0.418);
padding: 20px;
border-radius: 8px;
"
>
<h2 class="text-center">Batting Strike Rate Calculator</h2>
<div class="form-group mt-4">
<label for="Runs">Runs Scored: </label>
<input
type="number"
class="form-control"
id="Runs"
placeholder="Enter Runs Scored"
/>
</div>
<div class="form-group">
<label for="balls">Balls Faced:</label>
<input
type="number"
class="form-control"
id="balls"
placeholder="Enter number of Balls Faced"
/>
</div>
<div class="form-group">
<label for="res">Strike Rate: </label>
<input
type="text"
class="form-control"
id="res"
readonly
placeholder="Strike Rate Result"
/>
</div>
</div>
<div
class="container mt-5 px-5 mb-5"
style="
background-color: rgba(0, 0, 0, 0.418);
padding: 20px;
border-radius: 8px;
"
>
<h2 class="text-center">Bowling Average Calculator</h2>
<div class="form-group mt-4">
<label for="Runs1">Runs Conceded: </label>
<input
type="number"
class="form-control"
id="Runs1"
placeholder="Enter Number of Runs Conceded"
/>
</div>
<div class="form-group">
<label for="wic">Wickets Taken:</label>
<input
type="number"
class="form-control"
id="wic"
placeholder="Enter Number of Wickets taken"
/>
</div>
<div class="form-group">
<label for="res1">Bowling Average: </label>
<input
type="text"
class="form-control"
id="res1"
readonly
placeholder="Result"
/>
</div>
</div>
</div>
<div class="return">
<a href="index.html"><h1>Home</h1></a>
</div>
<script src="e.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>