-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
100 lines (97 loc) · 3.63 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
<!DOCTYPE html>
<html>
<head>
<title>Flip-a-saurus MAX</title>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- card start -->
<div class="container card-a-tron">
<div class="card">
<!-- card front begin -->
<div class="face front">
<div class="team-logo"></div>
<div class="player-photo-front">
<div class="player-number">
11
</div>
<div class="player-name-front">
<h3>Adam Boyet</h3>
</div>
</div>
</div>
<!-- card front end -->
<!-- card back begin -->
<div class="face back">
<div class="player-content-back">
<div class="player-identification-back">
<div class="player-photo-back"></div>
<div class="player-name-back">
Adam Boyet
</div>
</div>
<div class="player-statistics">
<div class="player-position-title">
Position
<br>
<span class="player-position">
Center Field
</span>
</div>
<div class="player-bat-thorw-title">
B/T
<br>
<span class="player-bat-thorw">
Left/Right
</span>
</div>
<div class="player-school-title">
High School
<br>
<span class="player-school">
Cybertron High – class of 2015
</span>
</div>
</div>
<div class="honors-divider">
<hr>
<p> <span>✹ ✹ ✹</span> Honors <span>✹ ✹ ✹</span> </p>
<hr>
</div>
<div class="player-honors">
<div class="left-side-honors">
<ul>
<li>All-District 2011-12</li>
<li>All-Conference 2011-12</li>
<li>All-Robotics 2010-13</li>
<li>Overachiever Forever</li>
</ul>
</div>
<div class="right-side-honors">
<ul>
<li>Academic Honors 2011-12</li>
<li>Scholar Honors 2011-12</li>
<li>National Athelete 2010-13</li>
<li>Overachiever Forever</li>
</ul>
</div>
</div>
<div class="video-link">
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">Adam Boyet Demo Reel</a>
</div>
<div class="school-statistics">
<div class="gpa-score">
<h4>GPA 3.95</h4>
</div>
<div class="act-score">
<h4>ACT 35</h4>
</div>
</div>
</div>
</div>
<!-- card back end -->
</div>
</div>
<!-- card end -->
</body>
</html>