You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
5.3 KiB
111 lines
5.3 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AquaGuardians</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" type="icon/png" href="finalfr.png">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="together">
|
|
<h1>Water Conservation Survey</h1>
|
|
<img
|
|
src="finalfr.png" alt="Top Left Image"
|
|
class="top-left-image">
|
|
</div>
|
|
<form id="surveyForm">
|
|
<!-- Full Name -->
|
|
<div class="form-group">
|
|
<label for="fullName">Full Name:</label>
|
|
<input type="text" id="fullName" name="fullName" placeholder="Enter username" required>
|
|
</div>
|
|
|
|
<!-- Email -->
|
|
<div class="form-group">
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" placeholder= "Enter email" required>
|
|
</div>
|
|
|
|
<!-- General Awareness -->
|
|
<fieldset class="form-group">
|
|
<legend><strong>1. General Awareness</strong></legend>
|
|
<label>Do you lack water?</label>
|
|
<input type="radio" name="lackwater" value="Yes"> Yes<br>
|
|
<input type="radio" name="lackwater" value="No"> No<br>
|
|
<input type="radio" name="lackwater" value="Not sure"> Not sure<br>
|
|
|
|
<label>Are you aware of your household’s daily water consumption?</label>
|
|
<input type="radio" name="householdWater" value="Yes"> Yes<br>
|
|
<input type="radio" name="householdWater" value="No"> No<br>
|
|
<input type="radio" name="householdWater" value="Not sure"> Not sure<br>
|
|
|
|
<label>Do you know how much water is wasted by a dripping tap per day?</label>
|
|
<input type="radio" name="drippingTap" value="Less than 5 liters"> Less than 5 liters<br>
|
|
<input type="radio" name="drippingTap" value="5-10 liters"> 5–10 liters<br>
|
|
<input type="radio" name="drippingTap" value="10-20 liters"> 10–20 liters<br>
|
|
<input type="radio" name="drippingTap" value="More than 20 liters"> More than 20 liters<br>
|
|
|
|
<label>Have you noticed water wastage in your community?</label>
|
|
<input type="radio" name="wastage" value="Frequently"> Frequently<br>
|
|
<input type="radio" name="wastage" value="Occassionaly"> Occassionaly<br>
|
|
<input type="radio" name="wastage" value="Rarely"> Rarely<br>
|
|
<input type="radio" name="wastage" value="Never"> Never<br>
|
|
</fieldset>
|
|
|
|
<!-- Personal Habits -->
|
|
<fieldset class="form-group">
|
|
<legend><strong>2. Personal Habits</strong></legend>
|
|
|
|
<label>How often do you turn off the tap while brushing your teeth?</label>
|
|
<input type="radio" name="tapWhileBrushing" value="Always"> Always<br>
|
|
<input type="radio" name="tapWhileBrushing" value="Sometimes"> Sometimes<br>
|
|
<input type="radio" name="tapWhileBrushing" value="Never"> Never<br>
|
|
|
|
|
|
<label>Do you have a habit of fixing leaks in your home promptly?</label>
|
|
<input type="radio" name="fixLeaks" value="Yes"> Yes<br>
|
|
<input type="radio" name="fixLeaks" value="No"> No<br>
|
|
|
|
<label>How frequently do you reuse water (e.g., for gardening, cleaning)?</label>
|
|
<input type="radio" name="reuseWater" value="Always"> Always<br>
|
|
<input type="radio" name="reuseWater" value="Sometimes"> Sometimes<br>
|
|
<input type="radio" name="reuseWater" value="Never"> Never<br>
|
|
|
|
<label>What type of water-saving appliances do you use at home?</label>
|
|
<input type="radio" name="waterAppliances" value="Low-flow faucets"> Low-flow faucets<br>
|
|
<input type="radio" name="waterAppliances" value="Dual-flush toilets"> Dual-flush toilets<br>
|
|
<input type="radio" name="waterAppliances" value="Water-efficient washing machines"> Water-efficient washing machines<br>
|
|
<input type="radio" name="waterAppliances" value="None"> None<br>
|
|
</fieldset>
|
|
|
|
<!-- Feedback and Suggestions -->
|
|
<fieldset class="form-group">
|
|
<legend><strong>3. Feedback and Suggestions</strong></legend>
|
|
<label>What do you think is the biggest cause of water wastage in your community?</label>
|
|
<textarea name="waterWastageCause" required></textarea>
|
|
|
|
<label>What kind of resources or tools would help you adopt better water conservation practices?</label>
|
|
<textarea name="conservationResources"></textarea>
|
|
|
|
<label>Do you have any suggestions for improving water conservation in your area?</label>
|
|
<textarea name="conservationSuggestions"></textarea>
|
|
</fieldset>
|
|
|
|
<!-- Submit Button -->
|
|
<button type="submit">Submit Survey</button>
|
|
</form>
|
|
|
|
<!-- Tips Section -->
|
|
<div id="tips">
|
|
<h2>Tips for Water Conservation</h2>
|
|
<p id="tipsContent"></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="script.js"></script>
|
|
</html>
|
|
|