-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
120 lines (116 loc) · 3.7 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
<!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
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.rtl.min.css"
integrity="sha384-dpuaG1suU0eT09tx5plTaGMLBsfDLzUCCUXOY2j/LSvXYuG6Bqs43ALlhIqAJVRb"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="card.css" />
<link rel="stylesheet" href="index.css" />
<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:wght@100..400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav>
<div
class="container d-flex justify-content-center align-items-center mb-2 mt-4"
>
<img src="/images/gen.jpg" style="width: 80px" alt="logo" />
<span class="fs-4"><h2>CricStat</h2></span>
</div>
</nav>
<div class="cont">
<div class="card1 col" style="position: relative">
<div class="card1-side front">
<div>
<p style="color: black; text-align: center">DLS Calculator</p>
</div>
</div>
<div class="card1-side back">
<div class="pic"></div>
<a
style="
color: whitesmoke;
text-decoration: none;
text-align: center;
font-family: Playwrite AU QLD, cursive;
background-color: rgba(0, 0, 0, 0.568);
padding: 5px;
font-size: 0.6em;
bottom: 10px;
"
href="dls.html"
target="_blank"
>Click Here!</a
>
</div>
</div>
<div class="card2 col" style="position: relative">
<div class="card2-side front">
<div>
<p style="color: black; text-align: center">NRR Calculator</p>
</div>
</div>
<div class="card2-side back">
<div></div>
<a
style="
color: whitesmoke;
text-decoration: none;
text-align: center;
font-family: Playwrite AU QLD, cursive;
background-color: rgba(0, 0, 0, 0.568);
padding: 5px;
font-size: 0.6em;
bottom: 10px;
"
href="nrr.html"
target="_blank"
>Click Here!</a
>
</div>
</div>
<div class="card3 col" style="position: relative">
<div class="card3-side front">
<div>
<p style="color: black; text-align: center">
Other Criteria Calculators
</p>
</div>
</div>
<div class="card3-side back">
<div></div>
<a
style="
color: whitesmoke;
text-decoration: none;
text-align: center;
font-family: Playwrite AU QLD, cursive;
background-color: rgba(0, 0, 0, 0.568);
padding: 5px;
font-size: 0.6em;
bottom: 10px;
"
href="e.html"
target="_blank"
>Click Here!</a
>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>