-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://unpkg.com/carbon-components/css/carbon-components.min.css" type="text/css" media="screen" charset="utf-8">
<link rel="shortcut icon" href="public/images/favicon.ico" id="favicon-ico">
<link rel="stylesheet" href="public/css/style.css">
<title>TensorflowJS - Testing 2018</title>
</head>
<body>
<div class="bx--grid container">
<div class="bx--row page-header">
<div class="center">
<h2>Predicted House Price With Tensorflow</h2>
</div>
</div>
<div class="bx--row container">
<div class="center">
<h2>
Result Price: Rp.
<span id="predict" class="predict"> 1000.0000</span>
</h2>
</div>
</div>
<div class="bx--row container">
<form id="myform" class="bx--form-item">
<input id="inputText" required type="number" class="bx--text-input" placeholder="input your size land by m2" />
<label for="text-input-3" class="bx--label">Input your desired house land are size</label>
</form>
</div>
</div>
<script src="https://unpkg.com/carbon-components/scripts/carbon-components.min.js"></script>
<script src="public/script/tensor.js"></script>
</body>
</html>