-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.1 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>
<head>
<title>Booth's Algorithm Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="CSS/style.css">
<script type="text/javascript" src="codefunction.js"></script>
</head>
<body>
<h1>Booth's Algorithm Calculator</h1>
<div id="cs441p1_form_wrapper">
<p>
<a id="cs441p1_link" href="https://github.com/haitham-99">Github</a>
</p>
<form id="cs441p1_form">
<table>
<tr>
<td class="cs441p1_tleft">Multiplicand:</td>
<td class="cs441p1_tright"><input type="text"></td>
</tr>
<tr>
<td class="cs441p1_tleft">Multiplier:</td>
<td class="cs441p1_tright"><input type="text"></td>
</tr>
<tr>
<td class="cs441p1_tleft">Bits:</td>
<td class="cs441p1_tright"><input type="text"></td>
</tr>
</table>
</form>
<button onclick="cs441p1_submit()">Submit</button>
<button onclick="cs441p1_reset()">Reset</button>
<div id="cs441p1_output"></div>
</div>
</body>
</html>