Skip to content
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
27 changes: 7 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,38 +190,25 @@ <h2 class="h1 hero-title">Journey to explore world</h2>

<section class="tour-search">
<div class="container">

<form action="" class="tour-search-form">

<div class="input-wrapper">
<label for="destination" class="input-label">Search Destination*</label>

<input type="text" name="destination" id="destination" required placeholder="Enter Destination"
class="input-field">
<label for="destination" class="input-label">Where to?</label>
<input type="text" name="destination" id="destination" required placeholder="Enter Destination" class="input-field">
</div>

<div class="input-wrapper">
<label for="people" class="input-label">Pax Number*</label>

<input type="number" name="people" id="people" required placeholder="No.of People" class="input-field">
<label for="people" class="input-label">Travelers</label>
<input type="number" name="people" id="people" required placeholder="No. of People" class="input-field">
</div>

<div class="input-wrapper">
<label for="checkin" class="input-label">Checkin Date**</label>

<label for="checkin" class="input-label">Check-in</label>
<input type="date" name="checkin" id="checkin" required class="input-field">
</div>

<div class="input-wrapper">
<label for="checkout" class="input-label">Checkout Date*</label>

<label for="checkout" class="input-label">Check-out</label>
<input type="date" name="checkout" id="checkout" required class="input-field">
</div>

<button type="submit" class="btn btn-secondary">Inquire now</button>

<button type="submit" class="btn btn-secondary">Inquire Now</button>
</form>

</div>
</section>

Expand Down