-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.04 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.04 KB
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
<!doctype html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<h1>Calculator</h1>
<div class="form-group row justify-content-center">
<textarea name="output" id="out" cols="80" rows="24"></textarea>
</div>
<form id="frm">
<div class="form-group row justify-content-center">
<label for="in" class="col-3 col-lg-2 col-form-label">Expression</label>
<div class="col-8 col-sm-7">
<input type="text" name="in" id="in" class="form-control">
</div>
</div>
</form>
</div>
</div>
</div>
<script src="./calculator.js"></script>
</body>
</html>