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

changed the alignment of comment div #1477

Merged
merged 3 commits into from
Jul 30, 2024
Merged
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
7 changes: 7 additions & 0 deletions css/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,11 @@
}
.footer a:hover {
color: #0056b3;
}
#comment{
padding: 10px;
/* margin-top: 50px; */
margin-left: 4px;
margin-top: 35px;
margin-bottom: 20px;
}
21 changes: 21 additions & 0 deletions css/contactus.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ body {
align-items: center;
margin: 50px auto 100px;
gap: 200px;

}


Expand Down Expand Up @@ -164,6 +165,7 @@ form textarea {

#comment {
border-bottom: 1px solid;
margin-top:15px;
}


Expand Down Expand Up @@ -192,8 +194,27 @@ form textarea {
color: #FF7D1F;
cursor: pointer;
font-size: 1rem;
width: 100px;
display:flex;
padding-left:20px;
margin-left: 190px;
}

#button:hover {
background-color: #333;
}


.main{
margin-left:100px;

}
/* margin for comment div */
#comment{
margin-bottom:15px;
margin-left:155px;
}

.container #comment{
margin-left:10px;
}
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1239,15 +1239,15 @@ <h1>Contact Us</h1>

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

<!-- <label for="comment">Comment:</label> -->
<textarea id="comment" name="feedback" required placeholder="Comment:"></textarea>
<br> <textarea id="comment" name="feedback" required placeholder="Comment:"></textarea>


<p id="thank-you-message" style="color: white; display: none;">Thank you !!<br>We will connect
soon.</p>
</form>
<button onclick="handleSubmit()" id="button">Submit</button>
</form> <br>
<button onclick="handleSubmit()" id="button" class="button1">Submit</button>
</div>
</div>
</div>
Expand Down
Loading