-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupcoming.html
More file actions
140 lines (128 loc) · 4.46 KB
/
Copy pathupcoming.html
File metadata and controls
140 lines (128 loc) · 4.46 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
<!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" />
<!-- Favicon -->
<link
rel="shortcut icon"
href="assets/images/favicon.png"
type="image/png"
/>
<title>World Cup | Upcoming Matches</title>
<!-- Font Awesome Kit -->
<script
src="https://kit.fontawesome.com/bbf02a5b9c.js"
crossorigin="anonymous"
></script>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<!-- Header with Banner Section -->
<header class="have-border-radius flex-container">
<div>
<h1>The Greatest show on the earth</h1>
<p
id="banner-paragraph"
title="Contrary to popular belief, Lorem Ipsum is not simply random text. It
has roots in a piece of classical Latin literature from 45 BC, making
it over 2000 years old."
>
Contrary to popular belief, Lorem Ipsum is not simply random text. It
has roots in a piece of classical Latin literature from 45 BC, making
it over 2000 years old.
</p>
<a href="#" class="link-button"
>Watch Live <i class="fa-solid fa-angle-right"></i
></a>
</div>
<div>
<img src="assets/images/Banner Image.png" alt="" />
</div>
</header>
<!-- Fixtures and Blog Section -->
<section id="fixture-and-blog" class="grid-container">
<nav class="flex-container have-border-radius">
<a href="#" class="link-button selected">Upcoming Matches</a>
<a href="#" class="link-button">All Groups</a>
<a href="index.html#fixture-and-blog" class="link-button">Blogs</a>
</nav>
<div id="content-grid" class="grid-container">
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
<div class="upcoming-match-card have-border-radius flex-container">
<h3>
<img src="assets/images/germany Flag.png" alt="" />
VS
<img src="assets/images/Flag.png" alt="" />
</h3>
<h2>Germany VS France</h2>
<p>April 01, 2023, 1.00 AM</p>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<h1>Goal</h1>
<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>
<h3>Connect with Us</h3>
<div class="social-links">
<a href="#"><i class="fa-brands fa-facebook-square"></i></a>
<a href="#"><i class="fa-brands fa-twitter-square"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</footer>
</body>
</html>