Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyarku authored Jun 12, 2024
1 parent 0940efa commit f049583
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
html
Copy code
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down Expand Up @@ -47,6 +49,26 @@ <h2>Contact Us</h2>
<p>Email: <a href="mailto:neurohealthafrica@gmail.com">neurohealthafrica@gmail.com</a></p>
<p>Address: Accra, Ghana</p>
</section>

<!-- Registration Form Section -->
<section id="registration">
<h2>Register for Updates</h2>
<form action="submit-your-form-handler-url" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>

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

<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">

<label for="message">Message:</label>
<textarea id="message" name="message" rows="4"></textarea>

<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2024 Neuro-Health Africa. All rights reserved.</p>
Expand Down

0 comments on commit f049583

Please sign in to comment.