Skip to content

Added two drop down bar #441

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
21 changes: 20 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ <h2 class="content-head is-center">Contact Us!</h2>
<label for="name">Name: </label>
<input id="name" name="name" placeholder="What your Mom calls you" />
</fieldset>

<!-- This part is about choosing which of the problem (problem statement can be changed-->
<fieldset class ="pure-group">
<label for="problem">Problem: </label>
<select id="menu" name="menu">
<option selected>Problem 1</option>
<option>Problem 2</option>
<option>Problem 3</option>
<option>Problem 4</option>
<option>Problem 5</option>
</select>
</fieldset>

<fieldset class="pure-group">
<label for="message">Message: </label>
Expand All @@ -45,9 +57,16 @@ <h2 class="content-head is-center">Contact Us!</h2>
required placeholder="[email protected]"/>
</fieldset>

<!-- Modification in color to dropdown bar -->
<fieldset class="pure-group">
<label for="color">Favourite Color: </label>
<input id="color" name="color" placeholder="green" />
<select id="menu" name="menu">
<option selected>Green</option>
<option>Red</option>
<option>Black</option>
<option>Blue</option>
<option>Pink</option>
</select>
</fieldset>

<fieldset class="pure-group honeypot-field">
Expand Down