-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (113 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<link rel="icon" href="./images/default.png">
<title>myPlayer.io</title>
<!-- external CSS link -->
<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=Poppins:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<section class="playerCard">
<img src="./images/default.png" id="logo" alt="">
<section class="buttonAndInput">
<input type="text" name="" value="" placeholder="Search for a Current Player... E.G Lebron James">
<button type="button" name="button">Get Player!</button>
</section>
<h3 id="fullName"></h3>
<div class="positionAndTeam">
<h4 id="showPosition"></h4>
<h4 id="team"></h4>
</div>
<img src="" id="playerPicture" alt="">
<button type="button" name="button" id="showDescriptionButton">Show Description</button>
<h3 id="description"></h3>
<button id="closeButton">×</button>
<button type="button" name="button" id="showStatsButton">Show 2021 Averages</button>
<button type="button" name="button" id="stopShowingStats">↑</button>
<section class="stats-box">
<h3 id="noResults"></h3>
<div class="stat">
<h5>GP</h5>
<h6 id="gm"></h6>
</div>
<div class="stat">
<h5>Minutes</h5>
<h5 id="min"></h5>
</div>
<div class="stat">
<h5>Points</h5>
<h5 id="pts"></h5>
</div>
<div class="stat">
<h5>FGM</h5>
<h6 id="fgm"></h6>
</div>
<div class="stat">
<h5>FGA</h5>
<h6 id="fga"></h6>
</div>
<div class="stat">
<h5>FG%</h5>
<h6 id="fg"></h6>
</div>
<div class="stat">
<h5>3PM</h5>
<h6 id="threepm"></h6>
</div>
<div class="stat">
<h5>3PA</h5>
<h6 id="threepa"></h6>
</div>
<div class="stat">
<h5>3P%</h5>
<h6 id="threep"></h6>
</div>
<div class="stat">
<h5>FTM</h5>
<h6 id="ftm"></h6>
</div>
<div class="stat">
<h5>FTA</h5>
<h6 id="fta"></h6>
</div>
<div class="stat">
<h5>FT%</h5>
<h6 id="ft"></h6>
</div>
<div class="stat">
<h5>OREB</h5>
<h6 id="oreb"></h6>
</div>
<div class="stat">
<h5>DREB</h5>
<h6 id="dreb"></h6>
</div>
<div class="stat">
<h5>REB</h5>
<h6 id="reb"></h6>
</div>
<div class="stat">
<h5>Assists</h5>
<h6 id="assists"></h6>
</div>
<div class="stat">
<h5>Steals</h5>
<h6 id="steals"></h6>
</div>
<div class="stat">
<h5>Blocks</h5>
<h6 id="block"></h6>
</div>
</section>
<script type="text/javascript" src="js/main.js"></script>
</section>
</body>
</html>