-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (48 loc) · 2.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Computers</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="script.js"></script>
<style>
body {
text-align: center;
padding: 40px;
}
table th {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<form class="parametersInput">
<div class="form-group row">
<label class="col-sm-1 col-form-label"></label>
<label for="price" class="col-sm-2 col-form-label">Price:</label>
<div class="col-sm-6">
<input type="number" class="form-control" id="price" name="price" placeholder="0">
</div>
</div>
<div class="form-group row">
<label class="col-sm-1 col-form-label"></label>
<label for="screen_size" class="col-sm-2 col-form-label">Screen size:</label>
<div class="col-sm-6">
<select class="form-control" id="screen_size" name="screen_size">
<option>13-14 inches</option>
<option>15 inches</option>
<option>17 inches</option>
</select>
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</br></br>
<div id="response"></div>
</div>
</body>
</html>