-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatches.html
157 lines (157 loc) · 5.5 KB
/
matches.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
<!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="shortcut icon" href="assets/football.png" type="image/x-icon" />
<!-- google font -->
<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;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- font awesome kit -->
<script
src="https://kit.fontawesome.com/cf49a636b2.js"
crossorigin="anonymous"
></script>
<!-- stylesheet -->
<link rel="stylesheet" href="matches.css" />
<link rel="stylesheet" href="style.css" />
<style>
.match__btn--active {
background-color: var(--dark-maroon);
color: #eeeee4;
}
</style>
<title>Stram FIFA World Cup | Matches</title>
</head>
<body>
<!-- header section -->
<header class="header">
<div class="header__text">
<h1 class="header__title">The Greatest show on the earth</h1>
<div>
<p class="header__description">
FIFA World Cup Qatar 2022 <br />
Watch the world’s most prestigious event live from our site. Keep an
eye on our website to get a feel of the field at home.
</p>
</div>
<button class="header__button btn">
Watch Live
<i class="fa-solid fa-circle-play"></i>
</button>
</div>
<div class="header__image">
<img src="./assets/Banner Image.png" alt="" />
</div>
</header>
<!-- main section -->
<main>
<div class="main__section">
<!-- sidebar -->
<aside class="sidebar">
<a href="matches.html" class="sidebar__btn match__btn--active"
>Upcoming Match</a
>
<a href="#" class="sidebar__btn">All Group</a>
<a href="index.html" class="sidebar__btn">Blog</a>
</aside>
<!-- matches -->
<section class="matches">
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
<div class="match">
<div class="team__flags">
<img src="assets/germany Flag.png" alt="" />
<h2>VS</h2>
<img src="assets/Flag.png" alt="" />
</div>
<div class="match__details">
<h2 class="team__names">Germany VS France</h2>
<p class="match__time">April 01, 2023, 1.00PM</p>
</div>
</div>
</section>
</div>
<!-- view all button -->
<div class="view__btn--container">
<button class="view__btn btn">View All</button>
</div>
</main>
<!-- footer -->
<footer class="footer">
<h2 class="footer__title">Goal</h2>
<hr />
<ul class="footer__links">
<li><a href="#">Contact Us </a></li>
<li><a href="#">Terms and Services </a></li>
<li><a href="#"> Privacy Policy </a></li>
<li><a href="#">Privacy Settings </a></li>
<li><a href="#">Goal App </a></li>
<li><a href="#">Goal Live </a></li>
</ul>
<div class="social__icons">
<a href="#"><i class="fa-brands fa-facebook-square"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
<a href="#"><i class="fa-brands fa-twitter-square"></i></a>
</div>
</footer>
</body>
</html>