-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>For tennis lovers</title>
<style>
body {
background-color: black;
color: white;
font-family: 'Bacasime Antique', serif;
}
h2 {
font-size: 4rem;
}
p {
font-size: 2rem;
}
img {
margin-left: 20px;
border-style: dotted;
}
a:link {
color: red;
}
a:hover {
color: hotpink;
}
a:visited {
color: green;
}
a:active {
color: blue;
}
</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>
<h2>Hey friend! Below are a few links that you can open in new tabs</h2>
<img src="https://img.olympicchannel.com/images/image/private/t_s_pog_staticContent_hero_xl_2x/f_auto/primary/weyzoz6o394sxfkbest9" height="300" width="500" alt="2 players on a tennis court" />
<p>Click <a href="tennis.html" target="_blank">here</a> to see the best tennis players of all times (modern era)</p>
<p><a href="slam.html" target="_blank">Here</a> you can take a look at the pursuit of grands slams among the top 3 in a 20-year period</p>
<p>Once your are done, you can take a look at this short <a href="your_player.html" target="_blank">questionnaire</a>!</p>
<script src="you.js"></script>
</body>
</html>