-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Akansha77/main
updated
- Loading branch information
Showing
4 changed files
with
274 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact Us</title> | ||
<style> | ||
@import url('variables.css'); | ||
body { | ||
|
||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: rgb(255 238 197); | ||
color: #be0065; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
.logo { | ||
position: absolute; | ||
top: 10px; | ||
left: 10px; | ||
width: 100px; | ||
height: auto; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
max-width: 1200px; | ||
width: 100%; | ||
height: 70vh; | ||
border-radius: 20px; | ||
overflow: hidden; | ||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.map-container, .contact-form-container { | ||
flex: 1; | ||
} | ||
|
||
.map-container iframe { | ||
width: 100%; | ||
height: 100%; | ||
border: 0; | ||
} | ||
|
||
.contact-form-container { | ||
background-color: rgb(255, 234, 184); | ||
padding: 30px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.contact-form-container h1 { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
color: #be0065; | ||
} | ||
|
||
.contact-form { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.contact-form input, .contact-form textarea { | ||
padding: 10px; | ||
margin-bottom: 15px; | ||
border: none; | ||
border-radius: 10px; | ||
outline: none; | ||
background: #ffffff; | ||
color: #be0065; | ||
border: 2px solid #d91c81; | ||
} | ||
|
||
.contact-form input::placeholder, .contact-form textarea::placeholder { | ||
color: #be0065; | ||
} | ||
|
||
.contact-form button { | ||
padding: 10px 40px; | ||
border: none; | ||
border-radius: 20px; | ||
background-color: #be0065 ; | ||
color: rgb(255 238 197); | ||
font-size: 14px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
align-self: center; | ||
} | ||
|
||
.contact-form button:hover { | ||
background-color: #c2186a; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<img src="Logos/Cloud Club Logos/transparent-bg-logos/Frame 14.png" alt="Logo" class="logo"> | ||
<div class="container"> | ||
<div class="map-container"> | ||
<iframe | ||
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d11171.988663604827!2d77.23127128580353!3d28.666913805085137!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cfd0683919c3b%3A0xf5fc331b74c2b9e2!2sIndira%20Gandhi%20Delhi%20Technical%20University%20for%20Women!5e0!3m2!1sen!2sin!4v1717526253911!5m2!1sen!2sin" | ||
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"> | ||
</iframe> | ||
</div> | ||
<div class="contact-form-container"> | ||
<h1>Contact Us</h1> | ||
<form action="https://api.web3forms.com/submit" method="POST" class="contact-form"> | ||
<input type="hidden" name="access_key" value="47c3ce45-249f-4c39-97e7-80972e46017d"> | ||
<input type="text" id="name" name="name" placeholder="Name" required> | ||
<input type="email" id="email" name="email" placeholder="Email" required> | ||
<input type="text" id="phone" name="phone" placeholder="Phone No" required> | ||
<textarea id="message" name="message" rows="4" placeholder="Write your message" required></textarea> | ||
<button type="submit">Submit</button> | ||
</form> | ||
</div> | ||
</div> | ||
<script> | ||
document.getElementById('contact-form').addEventListener('submit', function(event) { | ||
event.preventDefault(); | ||
|
||
// Gather form data | ||
const formData = { | ||
name: event.target.name.value, | ||
email: event.target.email.value, | ||
phone: event.target.phone.value, | ||
message: event.target.message.value | ||
}; | ||
|
||
// Simple form validation | ||
if (formData.name && formData.email && formData.phone && formData.message) { | ||
// For now, just log the form data to the console | ||
console.log('Form submitted:', formData); | ||
|
||
// Clear the form | ||
event.target.reset(); | ||
|
||
// Show a success message (optional) | ||
alert('Thank you for your message!'); | ||
} else { | ||
alert('Please fill out all required fields.'); | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
@import url('variables.css'); | ||
|
||
body { | ||
font-family: 'Courier New', Courier, monospace; | ||
background-color: rgb(255 238 197); | ||
margin: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
.poppins-bold { | ||
font-family: "Poppins", sans-serif; | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
.back-button { | ||
position: absolute; | ||
top: 20px; | ||
left: 20px; | ||
background-color: #fff5d7; | ||
color: #be0065; | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
transition: background-color 0.3s, transform 0.3s; | ||
} | ||
|
||
.back-button:hover { | ||
background-color: #ffe8a4; | ||
transform: scale(1.05); | ||
} | ||
|
||
.back-button:active { | ||
background-color: #fff5d7; | ||
} | ||
|
||
.contact-container { | ||
background-color: #fff5d7; | ||
padding: 50px; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
width: 80%; | ||
max-width: 800px; | ||
max-height: 900px; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
color: #be0065; | ||
font-size: 2em; | ||
margin-bottom: 40px; | ||
text-align: left; | ||
} | ||
|
||
.button-grid { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: 10px; | ||
margin-top: 10px; | ||
} | ||
|
||
.button { | ||
background-color: #f5e3c3; | ||
padding: 20px; | ||
border-radius: 10px; | ||
color: #be0065; | ||
text-decoration: none; | ||
display: flex; | ||
justify-content: flex-start; | ||
align-items: center; | ||
border: 2px solid #e0d2b8; | ||
transition: background-color 0.3s, transform 0.3s; | ||
} | ||
|
||
.button i { | ||
margin-right: 10px; | ||
} | ||
|
||
.button:hover { | ||
background-color: #e0d2b8; | ||
transform: scale(1.05); | ||
} | ||
|
||
.button:active { | ||
background-color: #d1c4a5; | ||
} | ||
|
||
/* Media query for responsiveness */ | ||
@media (max-width: 600px) { | ||
.button-grid { | ||
grid-template-columns: 1fr; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact</title> | ||
<link rel="stylesheet" href="developers.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
</head> | ||
<body> | ||
<body class="poppins-bold"> | ||
<a href="index.html" class="back-button">Back</a> | ||
<div class="contact-container"> | ||
<h1>Developers</h1> | ||
<div class="button-grid"> | ||
<a href="LINKEDIN PROFILE" class="button"><i class="fas fa-user"></i> Riya Ahlawat</a> | ||
<a href="LINKEDIN PROFILE" class="button"><i class="fas fa-user"></i> Pulak Srivastava</a> | ||
<a href="LINKEDIN PROFILE" class="button"><i class="fas fa-user"></i> Advika Singhal</a> | ||
<a href="LINKEDIN PROFILE" class="button"><i class="fas fa-user"></i> Samridhhi Tiwari</a> | ||
<a href="LINKEDIN PROFILE" class="button"><i class="fas fa-user"></i> Tanvi Bisht</a> | ||
<a href="https://www.linkedin.com/in/akansha-chaurasia-47235b260/" class="button"><i class="fas fa-user"></i> Akansha Chaurasia</a> | ||
</div> | ||
</div> | ||
</body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters