Skip to content

Commit

Permalink
Added Footballer Website (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
Soban71 authored Aug 15, 2024
1 parent a47a589 commit 7f3588f
Show file tree
Hide file tree
Showing 46 changed files with 2,779 additions and 0 deletions.
102 changes: 102 additions & 0 deletions PROJECTS/Football Website/About.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!-- about.html -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Soccer Club - About Us</title>
<style>

</style>
</head>
<body>

<header>
<nav>
<div class="logo">
<img src="Image/logo.jpg" alt="Soccer Club Logo">
<h1>Soccer Club</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="AddEvent.html">Add Events</a></li>
<li><a href="Recentevets.html">Recent Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger" onclick="toggleMenu()">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>

<!-- About Us Section -->
<section class="container about-container">
<h2>Welcome to Non Profit Soccer Club!</h2>
<img src="Image/About.jpeg" alt="Soccer Team">

<p>
At Soccer Club, we are more than just a team; we are a community passionate about the beautiful game.
Established with the goal of promoting sportsmanship, teamwork, and the love for soccer, our club has become
a hub for enthusiasts of all ages and skill levels.
</p>

<p>
Our journey started years ago when a group of friends decided to form a soccer team in their local
neighborhood. Over time, our small team evolved into a full-fledged club, welcoming players from diverse
backgrounds who share a common love for soccer.
</p>

<p>
We believe in the power of sports to bring people together, fostering friendship and healthy competition.
Our dedicated coaches and staff work tirelessly to create an inclusive and supportive environment for
everyone involved in our club.
</p>

<p>
Whether you're a seasoned player or just starting your soccer journey, Soccer Club is the place to be. Join
us for exciting matches, engaging events, and a sense of camaraderie that extends beyond the field.
</p>

<p>
Explore our website to stay updated on upcoming events, join training sessions, and connect with fellow
soccer enthusiasts. Feel free to reach out to us with any questions or inquiries; we'd love to hear from
you!
</p>

<p>Thank you for being a part of Soccer Club!</p>
</section>


<section id="footer">

<div class="footer container">
<div class="brand"><h1><span> Non Profit Soccer Club <span></h1></div>
<h2>Your Complete Guide Here</h2>
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="Image/fbicon.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/instagram-new--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/linkedin-circled--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/twitter--v1.png"></a>
</div>
<p>Copyright @ 2023 Soccer. All rights reserved</p>
</div>
</div>
</section>

</body>
</html>
100 changes: 100 additions & 0 deletions PROJECTS/Football Website/AddEvent.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<!-- events.html -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Soccer Club - Events</title>

</head>
<body>
<header>
<nav>
<div class="logo">
<img src="Image/logo.jpg" alt="Soccer Club Logo">
<h1>Soccer Club</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="AddEvent.html">Add Events</a></li>
<li><a href="Recentevets.html">Recent Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger" onclick="toggleMenu()">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>


<section class="container">
<h2>Add Events</h2>
<form id="eventsForm">
<label for="eventName">Add Name:</label>
<input type="text" id="eventName" name="eventName" required>

<label for="eventDate">Event Date:</label>
<input type="date" id="eventDate" name="eventDate" required>

<label for="eventType">Event Type:</label>
<select id="eventType" name="eventType" required>
<option value="tournament">Tournament</option>
<option value="friendly">Friendly Match</option>
<option value="training">Training Session</option>
</select>

<div class="event-time">
<label>Event Time:</label>
<input type="radio" id="morning" name="eventTime" value="morning" required>
<label for="morning">Morning</label>

<input type="radio" id="afternoon" name="eventTime" value="afternoon" required>
<label for="afternoon">Afternoon</label>
</div>

<label for="subscribe">Subscribe for Updates:</label>
<input type="checkbox" id="subscribe" name="subscribe" value="subscribe">

<label for="participants">Number of Participants:</label>
<input type="number" id="participants" name="participants" min="1" max="100" required>

<input type="submit" value="Submit">
</form>
</section>

<section id="footer">

<div class="footer container">
<div class="brand"><h1><span> Non Profit Soccer Club <span></h1></div>
<h2>Your Complete Guide Here</h2>
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="Image/fbicon.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/instagram-new--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/linkedin-circled--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/twitter--v1.png"></a>
</div>
<p>Copyright @ 2023 Soccer. All rights reserved</p>
</div>
</div>
</section>
<script src="Script.js"></script>



</body>
</html>
89 changes: 89 additions & 0 deletions PROJECTS/Football Website/Contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Soccer Club</title>
<link rel="stylesheet" href="style.css">

</head>
<body>

<header>
<nav>
<div class="logo">
<img src="Image/logo.jpg" alt="Soccer Club Logo">
<h1>Soccer</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="AddEvent.html">Add Events</a></li>
<li><a href="Recentevets.html">Recent Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger" onclick="toggleMenu()">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>

<section id="contact">
<h2>Contact Us</h2>

<p>Welcome to the Soccer Club! If you have any questions or would like to get in touch with us, feel free to reach out using the contact details below.</p>

<div class="details">
<div>
<h3>Club Location</h3>
<p>123 Soccer Street<br>Cityville, State, 12345</p>
</div>

<div>
<h3>Contact Information</h3>
<p>Email: info@soccerclub.com<br>Phone: (123) 456-7890</p>
</div>
</div>

<p>If you have specific inquiries, please use the form below:</p>

<div class="additional-content">
<h3>Follow Us on Social Media</h3>
<p>Stay updated with the latest news and events by following us on our social media channels. Connect with us on Facebook, Twitter, and Instagram.</p>

<h3>Join Our Soccer Community</h3>
<p>Become a part of our vibrant soccer community! Join our club and participate in various events, tournaments, and training sessions. We welcome players of all skill levels.</p>
</div>
</section>


<section id="footer">

<div class="footer container">
<div class="brand"><h1><span> Non Profit Soccer Club <span></h1></div>
<h2>Your Complete Guide Here</h2>
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="Image/fbicon.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/instagram-new--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/linkedin-circled--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/twitter--v1.png"></a>
</div>
<p>Copyright @ 2023 Soccer. All rights reserved</p>
</div>
</div>
</section>

</body>
</html>
Binary file added PROJECTS/Football Website/Image/About.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Community.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Image2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Images6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/OFFimage.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Tournment.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/Training.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/fbicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/logo.avif
Binary file not shown.
Binary file added PROJECTS/Football Website/Image/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/twitter--v1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECTS/Football Website/Image/video.mp4
Binary file not shown.
83 changes: 83 additions & 0 deletions PROJECTS/Football Website/Recentevets.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>

</head>
<body>
<header>
<nav>
<div class="logo">
<img src="Image/logo.jpg" alt="Soccer Club Logo">
<h1>Soccer</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="AddEvent.html">Add Events</a></li>
<li><a href="Recentevets.html">Recent Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>

<div class="burger" onclick="toggleMenu()">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>

<div class="RecentContainer">

<h1>Captivating Moments: Recent Event Photography and Images</h1>
<video width="520" height="240" controls>
<source src="./Image/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>

<div class="image-row">
<img src="./Image/Images1.jpg" alt="Image 1">
<img src="./Image/Images2.jpg" alt="Image 2">
<img src="./Image/Images3.jpg" alt="Image 3">
</div>

<div class="image-row">
<img src="./Image/Images5.jpg" alt="Image 4">
<img src="./Image/Images4.jpg" alt="Image 5">
<img src="./Image/Images6.jpg" alt="Image 6">
</div>

</div>



<section id="footer">

<div class="footer container">
<div class="brand"><h1><span> Non Profit Soccer Club <span></h1></div>
<h2>Your Complete Guide Here</h2>
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="Image/fbicon.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/instagram-new--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/linkedin-circled--v1.png"></a>
</div>

<div class="social-item">
<a href="#"><img src="Image/twitter--v1.png"></a>
</div>
<p>Copyright @ 2023 Soccer. All rights reserved</p>
</div>
</div>
</section>
</body>
</html>
Loading

0 comments on commit 7f3588f

Please sign in to comment.