-
Notifications
You must be signed in to change notification settings - Fork 115
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 #122 from preritjn/main
Resolved Issue #13
- Loading branch information
Showing
2 changed files
with
86 additions
and
0 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,24 @@ | ||
<!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"> | ||
<title>Feedback</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<form action="https://formspree.io/f/xaykqowl" method="post"> | ||
<p class="lk">Contact Us</p> | ||
<input type="text" name="name" id="name" placeholder="Your Name"> | ||
<input type="email" placeholder="Email" name="email" id="mail"> | ||
<textarea name="message" id="" cols="30" rows="10" placeholder="Message"></textarea> | ||
<button type="submit">Submit</button> | ||
</form> | ||
</div> | ||
</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,62 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); | ||
|
||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100%; | ||
height: 100vh; | ||
background-color: #d6cfe5; | ||
} | ||
|
||
form { | ||
display: flex; | ||
flex-direction: column; | ||
background-color: rgb(84, 97, 234); | ||
padding: 25px; | ||
border-radius: 10px; | ||
width: 90%; | ||
max-width: 600px; | ||
} | ||
|
||
form p { | ||
font-weight: 600; | ||
width: 50%; | ||
padding: 5px 10px; | ||
font-size: 20px; | ||
margin: auto 22vmin; | ||
border: 4px solid black; | ||
border-radius: 10px; | ||
text-align: center; | ||
} | ||
|
||
.lk { | ||
font-size: 33px; | ||
} | ||
|
||
form input, | ||
form textarea { | ||
padding: 10px; | ||
margin: 10px 0; | ||
color: white; | ||
outline: none; | ||
border: none; | ||
background-color: rgb(207, 232, 230); | ||
border-radius: 5px; | ||
} | ||
|
||
form button { | ||
padding: 10px; | ||
margin: 2vmin auto; | ||
width: 150px; | ||
background-color: rgb(148, 189, 247); | ||
border: none; | ||
border-radius: 8px; | ||
} |