-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
67 lines (54 loc) · 2.75 KB
/
home.html
File metadata and controls
67 lines (54 loc) · 2.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<title>Premier League</title>
</head>
<body class="text-white">
<section>
<div class="trim"><img src="/images/background.jpeg" alt="Background" class="imtip"></div>
<img src="/images/logo.png" alt="Premier League Logo" class="premlogo">
</section>
<nav class="navbar-default justify-content-between text-center" style="background-color:rgb(139,0,139); font-size: 25px;">
<a class="px-3" href="home.html">Home</a>
<a class="px-3" href="index.html" style="font-weight:bold">Players</a>
<div class="dropdown">
<a class="px-3" href="teams.html">Teams</a>
<div class="dropdown_content">
<a href="arsenal.html">Arsenal FC</a>
<a href="chelsea.html">Chelsea FC</a>
<a href="liverpool.html">Liverpool FC</a>
<a href="#">Manchester City FC</a>
<a href="#">Manchester United FC</a>
<a href="#">Tottenham Hotspur FC</a>
</div>
</div>
<a class="px-3" href="">Help</a>
</nav>
<div class="container-fluid">
<div class="row">
<h1 class="hometitle p-3">Welcome to the Premier League</h1>
<div class="col-7 d-flex justify-content-start px-0 py-3">
<div class="home_sections">
</div>
</div>
<div class="col-5 d-flex justify-content-center px-0 py-3">
<iframe style="border-radius: 10px;"width="560" height="315" src="https://www.youtube.com/embed/El19ZoInWP0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>u
</div>
</div>
</div>
<footer>
<nav class="navbar-default justify-content-between text-center" style="background-color:rgb(139,0,139); font-size: 25px;">
<a class="px-3" href="home.html">Home</a>
<a class="px-3" href="index.html">Players</a>
<a class="px-3" href="teams.html">Teams</a>
<a class="px-3" href="">Help</a>
<img src="images/logo.png" alt="logo" style="position:absolute; width:4%; height:4%; right:0">
</footer>
</body>
</html>