-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (32 loc) · 1.37 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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>file input image and alv</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
<script src="code.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id = "header">
<h1>alvFinder</h1>
</div>
<div class ="form" id = "form">
<form action="">
<input class="input" type="file" onchange="previewFile()" >
<br>
<img ="" class ="image" height="200" alt="Image preview...">
<input class ="input" id="alv24" type="number" step="0.1" placeholder=" alv 24%">
<input class ="input" id ="alv14" type="number" step="0.1" placeholder=" alv 14%">
<input class ="input" id ="alv10" type="number" step="0.1" placeholder=" alv 10%">
<input class="input" id="alv0" type="number" step="0.1" placeholder=" alv 0%">
<input class = "btn" type="submit" value="Submit">
</form>
</div>
<div id = "footer">
<p>Arado 2019 TV</p>
</div>
<script>
</script>
</body>
</html>