Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add advanced HTML content to Tech Conference website #557

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions Tech-Conference-Website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>

<head>
<title>Tech Conference 2023</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>Welcome to Tech Conference 2023!</h1>
<nav>
<ul>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</header>

<main>
<section id="about">
<h2>About the Conference</h2>
<p>Welcome to Tech Conference 2023, where innovation meets inspiration. Join us for three days of insightful talks, hands-on workshops, and networking opportunities. Our goal is to bring together tech enthusiasts, experts, and innovators to share knowledge and experiences.</p>
</section>

<section id="location">
<h2>Location</h2>
<p>Our conference will take place at the <strong>City Convention Center</strong>, located at 123 Tech Blvd, Tech City. Easily accessible and equipped with modern facilities. It's the perfect venue to host this year's tech event.</p>
</section>

<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or need assistance, feel free to <a href="contact.html">contact us</a>. We're here to help you make the most of your Tech Conference 2023 experience.</p>
</section>
</main>

<footer>
<p>&copy; 2023 Tech Conference. All rights reserved.</p>
</footer>
</body>

</html>
45 changes: 45 additions & 0 deletions Tech-Conference-Website/register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>

<head>
<title>Register - Tech Conference 2023</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>Register for Tech Conference 2023!</h1>
</header>

<main>
<section id="registration-form">
<h2>Registration Form</h2>
<p>Secure your spot at Tech Conference 2023 by filling out the registration form below. We look forward to welcoming you to this exciting event!</p>

<form action="submit_registration.php" method="post">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>

<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>

<label for="company">Company/Organization:</label>
<input type="text" id="company" name="company">

<label for="ticket-type">Ticket Type:</label>
<select id="ticket-type" name="ticket-type">
<option value="standard">Standard Pass</option>
<option value="vip">VIP Pass</option>
</select>

<input type="submit" value="Register">
</form>
</section>
</main>

<footer>
<p>&copy; 2023 Tech Conference. All rights reserved.</p>
</footer>
</body>

</html>
41 changes: 41 additions & 0 deletions Tech-Conference-Website/schedule.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>

<head>
<title>Schedule - Tech Conference 2023</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>Schedule for Tech Conference 2023!</h1>
</header>

<main>
<section id="schedule">
<h2>Conference Schedule</h2>
<p>Here's the schedule for the Tech Conference 2023. Check back for updates and get ready for an exciting lineup of talks, workshops, and networking opportunities.</p>

<h3>Day 1</h3>
<ul>
<li>9:00 AM - 10:30 AM: Keynote Address by Dr. Tech Guru</li>
<li>10:45 AM - 12:30 PM: Web Development Workshop</li>
<li>1:30 PM - 3:00 PM: AI and Machine Learning Panel Discussion</li>
<!-- Add more schedule items for Day 1 -->
</ul>

<h3>Day 2</h3>
<ul>
<li>9:00 AM - 10:30 AM: Cybersecurity Best Practices</li>
<li>10:45 AM - 12:30 PM: UX/UI Design Trends</li>
<!-- Add more schedule items for Day 2 -->
</ul>
</section>
</main>

<footer>
<p>&copy; 2023 Tech Conference. All rights reserved.</p>
</footer>
</body>

</html>
36 changes: 36 additions & 0 deletions Tech-Conference-Website/speakers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>

<head>
<title>Speakers - Tech Conference 2023</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>Speakers at Tech Conference 2023!</h1>
</header>

<main>
<section id="speaker-list">
<h2>Our Esteemed Speakers</h2>
<ul>
<li>
<h3>Dr. Tech Guru</h3>
<p>Renowned tech visionary and author of "Tech Trends 2023." Dr. Tech Guru will deliver the opening keynote address.</p>
</li>
<li>
<h3>Lisa Developer</h3>
<p>Lead developer at TechCorp, specializing in web development and front-end technologies.</p>
</li>
<!-- Add more speaker profiles -->
</ul>
</section>
</main>

<footer>
<p>&copy; 2023 Tech Conference. All rights reserved.</p>
</footer>
</body>

</html>