-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
171 lines (166 loc) · 5.43 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
168
169
170
171
<!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" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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=Poppins:wght@400&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/9bca460c29.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Responsive Football Website</title>
</head>
<body>
<section class="topsection">
<div class="topnav" id="myTopnav">
<div>
<a href="#home" class="active">Home</a>
<a href="#wc">World Cup 2023</a>
<a href="#matches">Upcoming Matches</a>
<a href="#contact">Contact</a>
</div>
<div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<a href="#login" class="glowing-button"
><i class="fas fa-sign-in-alt"></i> Login</a
>
</div>
</div>
<div class="flex-container">
<div class="half-width-left">
<h1 class="title">
Conmebol <br />Copa America <br />
2021.
</h1>
<a
class="glowing-button"
href="https://imtiaz-pranto.github.io/shopping-cart/"
target="blank"
>Watch Live</a
>
</div>
<div class="half-width-right">
<img id="scaled-img" src="images/banner.png" />
</div>
</div>
</section>
<section>
<div class="players">
<div class="product-box flex-item-1">
<img src="images/players/player-1.png" />
<h4>Naymar Jr</h4>
<p>Neymar da Silva Santos Júnior, known as Neymar.</p>
</div>
<div class="product-box flex-item-2">
<img src="images/players/player-2.png" />
<h4>Leonel Messi</h4>
<p>Lionel Andrés Messi is an Argentine professional footballer.</p>
</div>
<div class="product-box flex-item-3">
<img src="images/players/player-3.png" />
<h4>Cristiano Ronaldo</h4>
<p>Cristiano Ronaldo dos Santos Aveiro GOIH ComM is a Portuguese professional footballer.</p>
</div>
<div class="product-box flex-item-1">
<img src="images/players/player-4.png" />
<h4>Antoine Griezmann</h4>
<p>Antoine Griezmann is a French professional footballer.</p>
</div>
<div class="product-box flex-item-5">
<img src="images/players/player-5.png" />
<h4>Mesut Özil</h4>
<p>Mesut Özil is a German professional footballer who plays as an attacking midfielder.</p>
</div>
<div class="product-box flex-item-3">
<img src="images/players/player-6.png" />
<h4>Gareth Bale</h4>
<p>Gareth Frank Bale is a Welsh professional footballer </p>
</div>
</div>
</section>
<section>
<section class="flex-container">
<div class="half-width-left">
<h2>Watch Copa America Highlight</h2>
<p>
The 2021 Copa América was the 47th edition of the Copa América.
Watch all the Live matches.
</p>
<a
class="glowing-button"
href="https://imtiaz-pranto.github.io"
target="blank"
>Watch Live</a
>
</div>
<div class="half-width-right">
<img src="images/match.png" />
</div>
</section>
</section>
<section class="wc-banner flex-container">
<!-- <div class="half-width">
<i class="fas fa-trophy"></i>
</div> -->
<div>
<h1>World Cup News</h1>
<p>All the World Cup news in one place.</p>
<a
class="glowing-button"
href="https://imtiaz-pranto.github.io/shopping-cart/"
target="blank"
>Live News</a
>
</div>
</section>
<section>
<div class="unified-box">
<div>
<h1>700k</h1>
<small>Youtube Subcriber</small>
</div>
<div>
<h1>1.3M+</h1>
<small>Instagram Follower</small>
</div>
<div>
<h1>2.2M+</h1>
<small>Facebook Followers</small>
</div>
</section>
<section class="footer">
<img src="images/Logo.png" alt="logo" />
<br />
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fas fa-basketball-ball"></a>
<a href="#" class="fab fa-youtube"></a>
<p>Copyright © 2021</p>
</section>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>