-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="resources/CSS/index.css" />
<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=Abril+Fatface&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<title>LeBron James Tribute</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="lebron.html">Why Lebron Is The GOAT</a></li>
<li><a href="lebronClicker.html">LeBron Clicker Game</a></li>
</ul>
</nav>
</header>
<main>
<h1>LeBron James</h1>
<a href="https://www.youtube.com/watch?v=D2KRIFU8MfA" target="_blank"
><img src="resources/images/image1.jpg" alt=""
/></a>
<a target="_blank" href="https://www.youtube.com/watch?v=7ouk3ltEmLE"
><img src="resources/images/image2.jpg" alt=""
/></a>
<a target="_blank" href="https://www.youtube.com/watch?v=_5N79HI7228"
><img src="resources/images/image3.png" alt=""
/></a>
<a href="https://www.youtube.com/watch?v=t7zJSWWiSSE" target="_blank"
><img src="resources/images/image4.jpg" alt=""
/></a>
<p>This is LeBron, The Greatest of All Time</p>
<h2 class="achievements-list">His life achievements:</h2>
<ul class="achievements-list">
<li>50000 points in the NBA</li>
<li>GOAT</li>
<li>4 rings</li>
<li>6'9</li>
<li>played with his son in the league</li>
<li>too many to list</li>
</ul>
</main>
</body>
</html>