Ayush19112 commited on
Commit
d469bcb
1 Parent(s): acf6f81

Delete index.html

Browse files
Files changed (1) hide show
  1. index.html +0 -53
index.html DELETED
@@ -1,53 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Banglore Home Price Prediction</title>
5
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
6
- <script src="script.js"></script>
7
- <link rel="stylesheet" href="style.css">
8
- </head>
9
- <body>
10
- <div class="img"></div>
11
- <form class="form">
12
- <h2>Area (Square Feet)</h2>
13
- <input class="area" type="text" id="uiSqft" class="floatLabel" name="Squareft" value="1000">
14
- <h2>BHK</h2>
15
- <div class="switch-field">
16
- <input type="radio" id="radio-bhk-1" name="uiBHK" value="1"/>
17
- <label for="radio-bhk-1">1</label>
18
- <input type="radio" id="radio-bhk-2" name="uiBHK" value="2" checked/>
19
- <label for="radio-bhk-2">2</label>
20
- <input type="radio" id="radio-bhk-3" name="uiBHK" value="3"/>
21
- <label for="radio-bhk-3">3</label>
22
- <input type="radio" id="radio-bhk-4" name="uiBHK" value="4"/>
23
- <label for="radio-bhk-4">4</label>
24
- <input type="radio" id="radio-bhk-5" name="uiBHK" value="5"/>
25
- <label for="radio-bhk-5">5</label>
26
- </div>
27
- </form>
28
- <form class="form">
29
- <h2>Bath</h2>
30
- <div class="switch-field">
31
- <input type="radio" id="radio-bath-1" name="uiBathrooms" value="1"/>
32
- <label for="radio-bath-1">1</label>
33
- <input type="radio" id="radio-bath-2" name="uiBathrooms" value="2" checked/>
34
- <label for="radio-bath-2">2</label>
35
- <input type="radio" id="radio-bath-3" name="uiBathrooms" value="3"/>
36
- <label for="radio-bath-3">3</label>
37
- <input type="radio" id="radio-bath-4" name="uiBathrooms" value="4"/>
38
- <label for="radio-bath-4">4</label>
39
- <input type="radio" id="radio-bath-5" name="uiBathrooms" value="5"/>
40
- <label for="radio-bath-5">5</label>
41
- </div>
42
- <h2>Location</h2>
43
- <div>
44
- <select class="location" name="" id="uiLocations">
45
- <option value="" disabled="disabled" selected="selected">Choose a Location</option>
46
- <option>Electronic City</option>
47
- <option>Rajaji Nagar</option>
48
- </select>
49
- </div>
50
- <button class="submit" onclick="onClickedEstimatePrice()" type="button">Estimate Price</button>
51
- <div id="uiEstimatedPrice" class="result"> <h2></h2> </div>
52
- </body>
53
- </html>