-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
61 lines (61 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clash Royale Card Analysis</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poor+Story&display=swap"
/>
<script async src="script.js"></script>
</head>
<body>
<form id="cardForm">
<input type="text" id="cardName" placeholder="Enter card name" />
<button type="submit" id="submitBtn">→</button>
</form>
<form id="cardForm-after">
<input type="text" id="cardName-after" placeholder="Enter card name" />
<button type="submit" id="submitBtn-after">→</button>
</form>
<div class="card-display">
<!-- <div class="card-1">
<div class="image-container">
<img
class="image"
src="https://api-assets.clashroyale.com/cards/300/X_DQUye_OaS3QN6VC9CPw05Fit7wvSm3XegXIXKP--0.png"
/>
</div>
<div class="body-container">
<p>Card Name: Goblins</p>
<p>Rarity: Common</p>
<p>Elixir Cost: 2</p>
<p>Supercell ID: 26000002</p>
<p>Evolution: YES</p>
</div>
</div> -->
</div>
<div class="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="error-msg opacity">
<div class="close-btn">
<img class="close-img" src="/images/close.webp" alt="Close button" />
</div>
<!-- <p>Something went wrong!</p> -->
</div>
<div class="overlay opacity"></div>
<footer>
<p>
© <span id="currentYear"></span>
<a href="https://github.com/NipulM" target="_blank">NipulM</a> | All
Rights Reserved.
</p>
</footer>
</body>
</html>