-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (171 loc) · 9.27 KB
/
index.html
File metadata and controls
181 lines (171 loc) · 9.27 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!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">
<title>Welcome To Responsive Football Website</title>
<!-- Link the CSS file -->
<link rel="stylesheet" href="css/style.css">
<!-- Import fontawesome.com kit to my project -->
<script src="https://kit.fontawesome.com/81654f32e5.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Header section (banner + menu) -->
<header>
<section class="top-banner">
<!-- navigation and menu bar is optional. so I will deal with it later -->
<!-- <div class="navigation-bar">
<nav class="nav-menu">
</nav>
<div class="login-icon">
</div>
</div> -->
<!-- banner heading and image -->
<div class="banner-heading">
<h1>Conmebol Copa America 2021</h1>
<div class="watch-live">
<a class="watch-live-button" href="https://www.youtube.com/" target="-blank">Watch Live<span><i
class="fas fa-arrow-right"></i></span></a>
</div>
</div>
<div class="banner-image">
<img src="images/banner.png" alt="">
</div>
</section>
</header>
<!-- main section -->
<main>
<!-- image gallery -->
<section class="photo-album">
<div class="photos">
<div class="photo">
<img src="images/players/player-1.png" alt="Neimer Jr">
<h3 class="player-name">Neymar Jr</h3>
<p class="photo-caption">Neymar da Silva Santos Júnior, known as Neymar, is a Brazilian professional
footballer who plays as a forward for Ligue 1 club Paris Saint-Germain and the Brazil national
team.</p>
</div>
<div class="photo">
<img src="images/players/player-2.png" alt="">
<h3 class="player-name">Lionel Messi</h3>
<p class="photo-caption">Lionel Andrés Messi is an Argentine professional footballer who plays as a
forward or an attacking midfielder and captains the Argentina national team.</p>
</div>
<div class="photo">
<img src="images/players/player-3.png" alt="">
<h3 class="player-name">Cristiano Ronaldo</h3>
<p class="photo-caption">Cristiano Ronaldo dos Santos Aveiro GOIH ComM is a Portuguese professional
footballer who plays as a forward for Serie A club Juventus and captains the Portugal national
team.</p>
</div>
<div class="photo">
<img src="images/players/player-4.png" alt="">
<h3 class="player-name">Paulo Dybala</h3>
<p class="photo-caption">Paulo Exequiel Dybala is an Argentine professional footballer who plays as
a forward for Serie A club Juventus and the Argentina national team.</p>
</div>
<div class="photo">
<img src="images/players/player-5.png" alt="">
<h3 class="player-name">Mesut Ozil</h3>
<p class="photo-caption">Mesut Özil is a German professional footballer who plays as an attacking
midfielder for Süper Lig club Fenerbahçe. Nicknamed "The Assist King".</p>
</div>
<div class="photo">
<img src="images/players/player-6.png" alt="">
<h3 class="player-name">Mauro Icardi</h3>
<p class="photo-caption">Mauro Emanuel Icardi is an Argentine professional footballer who plays as a
striker for Ligue 1 club Paris Saint-Germain and the Argentina national team.</p>
</div>
<div class="photo">
<img src="images/players/player-7.png" alt="">
<h3 class="player-name">Di Maria</h3>
<p class="photo-caption">Ángel Fabián Di María is an Argentine professional footballer who plays for
Ligue 1 club Paris Saint-Germain and the Argentina national team.</p>
</div>
<div class="photo">
<img src="images/players/player-8.png" alt="">
<h3 class="player-name">Kylian Mbappé</h3>
<p class="photo-caption">Kylian Mbappé Lottin is a French professional footballer who plays as a
forward for Ligue 1 club Paris Saint-Germain and the France national team.</p>
</div>
<div class="photo">
<img src="images/players/player-9.png" alt="">
<h3 class="player-name">Mohamed Salah</h3>
<p class="photo-caption">Mohamed Salah Hamed Mahrous Ghaly is an Egyptian professional footballer
who plays as a forward for Premier League club Liverpool and captains the Egypt national team.
</p>
</div>
<div class="photo">
<img src="images/players/player-10.png" alt="">
<h3 class="player-name">Harry Kane</h3>
<p class="photo-caption">Harry Edward Kane MBE is an English professional footballer who plays as a
striker for Premier League club Tottenham Hotspur and captains the England national team.</p>
</div>
<div class="photo">
<img src="images/players/player-11.png" alt="">
<h3 class="player-name">Kevin De Bruyne</h3>
<p class="photo-caption">Kevin De Bruyne is a Belgian professional footballer who plays as a
midfielder for Premier League club Manchester City, where he is vice-captain, and the Belgium
national team.</p>
</div>
<div class="photo">
<img src="images/players/player-12.png" alt="">
<h3 class="player-name">Philippe Coutinho</h3>
<p class="photo-caption">Philippe Coutinho Correia is a Brazilian professional footballer who plays
as an attacking midfielder or winger for Spanish club Barcelona and the Brazil national team.
</p>
</div>
</div>
</section>
<!-- image gallery section ends here -->
<!-- Highlights section starts here -->
<section class="highlights-section">
<div class="highlights-heading">
<div class="highlights-text">
<h1>All Highlights<br>Copa America 2021</h1>
<p>
Copa América or CONMEBOL Copa América, known until 1975 as the South American Football
Championship, is the main men's football tournament contested among national teams from South
America. It is the oldest still-running international football competition, as well as the third
most watched in the world.
</p>
</div>
<div class="watch-now">
<a class="watch-now-button"
href="https://www.youtube.com/results?search_query=copa+america+highlights+2021"
target="-blank">Watch Now<span><i class="fas fa-arrow-right"></i></span></a>
</div>
</div>
<!-- Bonus Sectrion For Extra Mark -->
<div class="highlights-video">
<video src="media/highlights-1.mp4" width="280px" poster="media/thumbnails/highlights-1.jpg"
controls></video>
<video src="media/highlights-2.mp4" width="280px" poster="media/thumbnails/highlights-2.jpg"
controls></video>
<video src="media/highlights-3.mp4" width="280px" poster="media/thumbnails/highlights-3.jpeg"
controls></video>
<video src="media/highlights-4.mp4" width="280px" poster="media/thumbnails/highlights-4.jpg"
controls></video>
</div>
</section>
</main>
<!-- main section ends here -->
<!-- html code for footer section -->
<footer class="footer-section">
<div class="footer-image">
<img src="images/Logo.png" alt="logo">
</div>
<div class="social-icons">
<a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
<div class="copyright-text">
<p>Copyright © 2022 Football</p>
</div>
</footer>
<!-- footer section ends here -->
</body>
</html>