-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupcoming-match.html
139 lines (130 loc) · 4.42 KB
/
upcoming-match.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
<!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>World Cup - 2022</title>
<!-- favicon -->
<link rel="shortcut icon"
href="assets/png-transparent-american-football-football-team-football-sport-sports-equipment-football-team-thumbnail.png"
type="image/x-icon">
<!-- stylesheet link -->
<link rel="stylesheet" href="upcoming-mathc.css">
<!-- 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=DM+Sans:wght@500&family=Lobster&family=Poppins:wght@500&family=Roboto:wght@500&display=swap"
rel="stylesheet">
<!-- font awesome link -->
<script src="https://kit.fontawesome.com/1edf373191.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- -------------------------banner section--------------------------- -->
<header>
<div class="banner">
<div>
<div class="banner-text">
<h1>The Greatest show on the earth</h1>
<p>Nothing compares to it. Not the Stanley Cup. Not the Super Bowl. Not the World Series. Not the Olympics.
Nothing.</p>
<button class="glow-on-hover" type="button"> Watch Live
<i class="fa-solid fa-chevron-right"></i></button>
</div>
</div>
<div>
<div class="banner-img">
<img class="bnr-img" src="assets/Banner Image.png" alt="">
</div>
</div>
</div>
</header>
<!-- ----------------------main content of the page --------------------------->
<main>
<section class="blogs">
<aside>
<nav>
<li class="default"><a href="upcoming-match.html">Upcoming Match</a></li>
<li><a href="#">All Group</a></li>
<li><a href="index.html">Blog</a></li>
</nav>
</aside>
<div class="blog">
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="card">
<div class="flag">
<img src="assets/germany Flag.png" alt="">
<p>vs</p>
<img src="assets/Flag.png" alt="">
</div>
<h5>Germany VS France </h5>
<p>April 01, 2023, 1.00 AM</p>
</div>
</div>
</section>
</main>
<!-------------------------------- footer ---------------------------------->
<footer>
<h2>Goal</h2>
<hr>
<div class="links">
<a href="#">Contact Us</a>
<a href="#">Terms of Service </a>
<a href="#">Privacy Policy</a>
<a href="#">Privacy Settings</a>
<a href="#">Goal App</a>
<a href="#">Goal Live</a>
</div>
<div class="social-links">
<a href="https://www.facebook.com/"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://www.instagram.com/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.linkedin.com/feed/"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</footer>
</body>
</html>