-
Notifications
You must be signed in to change notification settings - Fork 0
/
sub-_events-sports.html
29 lines (29 loc) · 1 KB
/
sub-_events-sports.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select The Event Which You Want</title>
<link rel="stylesheet" href="sub_events-sports.css"> <!-- Link to your CSS file -->
</head>
<body>
<div class="container">
<h1 class="heading">Select The Event You Want</h1>
<div class="events">
<div class="event">
<a href="competation.html">
<img src="./images/sports-events.jpeg" alt="Arranging Competations">
<h3>Arranging Sports Competations</h3>
</a>
</div>
<div class="event">
<a href="sports-award-ceremoney.html">
<img src="./images/sports-award-ceremoney.jpeg" alt="Award Ceremoney">
<h3>Award Ceremoney</h3>
</a>
</div>
<!-- Add more events as needed -->
</div>
</div>
</body>
</html>