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

Enhancement of Contact Us Page UI according to your inputs #477

Closed
wants to merge 3 commits into from
Closed
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
Binary file added images/hand.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 36 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -376,28 +376,43 @@ <h4 class="portfolio-heading">Climate smart Farming</h4>
</div>
</section>

<!-- Contact -->
<section>
<div class="contact">
<div class="contactInfo" >
<img src="images/hand.jpg">
</div>
<div class="contactForm">
<h2>Contact Us!</h2>
<div class="formBox">
<div class="inputBox w50">
<input type="text" name="" required>
<span>Full Name</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Email Address</span>
</div>
<div class="inputBox w50">
<input type="email" required>
<span>Mobile Number</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Email Subject</span>
</div>
<div class="inputBox w100">
<textarea required></textarea>
<span>Write your message here...</span>
</div>
<div class="inputBox w100">
<input type="submit" value="Submit">
<input type="button" value="Feedback">
</div>
</div>
</div>
</section>

<section class="contact" id="contact">
<h2 class="heading">Contact <span>Us!</span></h2>
<form action="#" id="contact-form">
<div class="input-box">
<input type="text" placeholder="Full Name" required>
<input type="email" placeholder="Email Address" required>
</div>

<div class="input-box">
<input type="number" placeholder="Mobile Number" required id="mobileNumber">
<input type="text" placeholder="Email Subject" required>
</div>

<textarea name="" id="" cols="30" rows="10" placeholder="Your Message" required></textarea>
<button id="review-btn">Give feedback</button>
<input type="submit" class="btn" id="contact-btn">


</form>

</section>

<!-- Modal -->
<div id="modal" class="modal">
Expand Down
Loading