-
Notifications
You must be signed in to change notification settings - Fork 0
/
tennis.html
126 lines (108 loc) · 3.43 KB
/
tennis.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
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tennis heroes</title>
<style>
.flex-container {
display: flex;
justify-content: center;
align-content: center;
height: 98vh;
gap: 10px;
}
.player {
flex: 1;
max-width: 500px;
background-color: black;
color: white;
padding: 10px;
font-family: 'Bacasime Antique', serif;
text-align: center;
border-radius: 5px;
}
.rank {
font-size: 6rem;
margin-top: 10px;
margin-bottom: 1px;
}
.name {
font-size: 4rem;
font-weight: 700;
margin-bottom: 20px;
margin-top: 3px;
}
.grand-slam {
font-size: 3rem;
margin-bottom: 2px;
}
#first {
color: gold;
}
#second {
color: silver;
}
#third {
color: rgb(163, 163, 24);
}
.flex-container img {
display: block;
margin-left: auto;
margin-right: auto;
}
.pic {
height: 100;
width: 100;
margin-bottom: 5px;
border: 2px white;
border-style: outset;
}
.flag {
height: 75px;
width: 110px;
margin-bottom: 30px;
}
.click {
font-style: italic;
}
@media (max-width: 1250px) {
.flex-container {
flex-direction: column;
height: 100%;
}
}
</style>
<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=Bacasime+Antique&display=swap" rel="stylesheet">
</head>
<body>
<div class="flex-container">
<div class = player one>
<p id="first" class="rank">#1</p>
<p class="name">Novak Djokovic</p>
<img class="flag" src="https://www.worldometers.info/img/flags/small/tn_ri-flag.gif" alt="Serbia flag" />
<a href="djoko.html" target="_blank"><img class="pic" src="https://www.atptour.com/-/media/tennis/players/head-shot/2019/02/25/18/18/djokovic_head_ao19.png?sc=0&hash=D882F4726423BFE525505F92029ECE00 alt="Novak's pic"/></a>
<p class="click">Click on image to get player's stats in another tab</p>
<p class="grand-slam">23 grand slams</p>
</div>
<div class = player two>
<p id="second" class="rank">#2</p>
<p class="name">Rafael Nadal</p>
<img class="flag" src="https://www.worldometers.info/img/flags/small/tn_sp-flag.gif" alt="Spain flag" />
<a href="nadal.html" target="_blank"><img class="pic" src="https://www.atptour.com/-/media/tennis/players/head-shot/2022/05/25/15/47/nadal-head-2022-may.png?sc=0&hash=24B112BA5207C1CACABFBA790A65803E" alt="Rafa's pic"/></a>
<p class="click">Click on image to get player's stats in another tab</p>
<p class="grand-slam">22 grand slams</p>
</div>
<div class = player three>
<p id="third" class="rank">#3</p>
<p class="name">Roger Federer</p>
<img class="flag" src="https://www.worldometers.info/img/flags/small/tn_sz-flag.gif" alt="Switzerland flag" />
<a href="federer.html" target="_blank"><img class="pic" src="https://www.atptour.com/-/media/tennis/players/head-shot/2020/02/26/11/55/federer_head_ao20.png?sc=0&hash=7A17A4E9C10DF90A2C987081C7EEE1E8" alt="Roger's pic"/></a>
<p class="click">Click on image to get player's stats in another tab</p>
<p class="grand-slam">20 grand slams</p>
</div>
</div>
</body>
</html>