Skip to content

Commit

Permalink
Merge pull request #122 from preritjn/main
Browse files Browse the repository at this point in the history
Resolved Issue #13
  • Loading branch information
IshitaSatpathy authored Oct 11, 2022
2 parents f97564b + 046c9ca commit 4477577
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Prerit Kumar Jain/Issue No. 13/index.html
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>
62 changes: 62 additions & 0 deletions Prerit Kumar Jain/Issue No. 13/style.css
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;
}

0 comments on commit 4477577

Please sign in to comment.