Zimgerm IDIPA

Register Your Project

wilddong
Author: wilddong

<!DOCTYPE html>
<html>
<head>
<style>
/* Form container */
.form-container {
max-width: 400px;
margin: 0 auto;
}

/* Form field labels */
.form-label {
font-weight: bold;
margin-bottom: 10px;
}

/* Form input fields */
.form-input {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}

/* Form submit button */
.form-submit {
width: 100%;
padding: 10px;
background-color: #34669A;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}

/* Form submit button hover effect */
.form-submit:hover {
background-color: #23527B;
}

/* Form success message */
.form-success {
color: #34669A;
font-weight: bold;
}
</style>
</head>
<body>

<div class=”form-container”>
<form action=”YOUR_FORM_ACTION_URL” method=”POST”>
<label class=”form-label” for=”name”>Name:</label>
<input class=”form-input” type=”text” id=”name” name=”name” required>

<label class=”form-label” for=”email”>Email:</label>
<input class=”form-input” type=”email” id=”email” name=”email” required>

<label class=”form-label” for=”project”>Project Description:</label>
<textarea class=”form-input” id=”project” name=”project” required></textarea>

<label class=”form-label” for=”investment”>Investment Amount:</label>
<input class=”form-input” type=”text” id=”investment” name=”investment” required>

<label class=”form-label” for=”timeline”>Project Timeline:</label>
<input class=”form-input” type=”text” id=”timeline” name=”timeline” required>

<label class=”form-label” for=”location”>Project Location:</label>
<input class=”form-input” type=”text” id=”location” name=”location” required>

<input class=”form-submit” type=”submit” value=”Submit”>

<p class=”form-success”>Thank you for submitting your project. We will get back to you soon.</p>
</form>
</div>

</body>
</html>

Leave a Comment

error: Content is protected !!
Scroll to Top

Want to collaborate on an upcoming project?

Leave your details and Matthew will get back to you.