-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (164 loc) · 6.26 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
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
<!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>Document</title>
<script src="https://kit.fontawesome.com/a42454cdc7.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header images and link button -->
<header class="part-one">
<div class="half-width">
<h1 class="text">Conmebol <br>
Copa America <br>
2021
</h1>
<nav class="button-arrow">
<a href="https://github.com/">Watch Live
<i class="fas fa-long-arrow-alt-right"></i> </a>
</nav>
</div>
<div class="half-width">
<img src="images/banner.png" alt="">
</div>
</header>
<!-- header end -->
<!-- players images and blog part -->
<main>
<section class="part-two">
<article class="part1">
<div>
<img src="images/players/player-1.png" alt="">
</div>
<div>
<h3>Neymar Jr</h3>
<p>Neymar came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-2.png" alt="">
</div>
<div class="discribe">
<h3>Lionel Messi</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-3.png" alt="">
</div>
<div>
<h3>Cristiano Ronaldo</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
</section>
<section class="part-two">
<article class="part1">
<div>
<img src="images/players/player-4.png" alt="">
</div>
<div class="discribe">
<h3>Paulo Dybala</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-5.png" alt="">
</div>
<div class="discribe">
<h3>Mesut Ozil </h3>
<p>L came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-6.png" alt="">
</div>
<div>
<h3>Mauro Icardi </h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
</section>
<section class="part-two">
<article class="part1">
<div>
<img src="images/players/player-7.png" alt="">
</div>
<div>
<h3>Di Maria</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-8.png" alt="">
</div>
<div>
<h3>Mohamed Salah</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-9.png" alt="">
</div>
<div>
<h3>Harry Kane</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
</section>
<section class="part-two">
<article class="part1">
<div>
<img src="images/players/player-10.png" alt="">
</div>
<div>
<h3>Kevin De Bruyne</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-11.png" alt="">
</div>
<div>
<h3>Lionel Messi</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
<article class="part1">
<div>
<img src="images/players/player-12.png" alt="">
</div>
<div>
<h3>Philippe Coutinho</h3>
<p> came into prominence at Santos, where he made his professional debut aged 17.</p>
</div>
</article>
</section>
</main>
<!-- footer Football logo social icon and links and copy right rule -->
<footer>
<div class="logo-football">
<img src="images/Logo.png" alt="">
</div>
<div class="social">
<a href="https://www.facebook.com/"> <i class="fab fa-facebook-square filled"></i></a>
<a href="https://twitter.com/login?lang=en"> <i class="fab fa-twitter-square filled"></i></a>
<a href="https://www.google.com/gmail/about/"><i class="fas fa-envelope filled"></i></a>
<a href="https://www.instagram.com/"><i class="fab fa-instagram-square filled"></i></a>
</div>
<div class="paragraph">
<p>Copyright © 2022 Football</p>
</div>
</footer>
</body>
</html>