-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.73 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
<!DOCTYPE>
<html>
<head>
<title>
Logic gates
</title>
<meta charset="utf-8">
<!-- Audio Player CSS & Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="./raphael.js"> </script>
<!-- <script src="index.js"></script> -->
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">-->
<link rel="stylesheet" href="style.css?v=2.0">
</head>
<body>
<div id="container" class="hide"></div>
<div id="paper" class="hide">
</div>
<!-- <form> -->
<label for="fgate">GATE</label>
<input type="text" id="gate" value="1"><br>
<label for="fname">set:</label>
0<input type="radio" id="set" name="set" value="0">
1<input type="radio" id="set" name="set" value="1" checked><br>
<!-- <input type="text" id="set" value="1"> -->
<label for="fname">enable:</label>
0<input type="radio" id="enable" name="enable" value="0">
1<input type="radio" id="enable" name="enable" value="1" checked><br>
<!-- <input type="text" id="enable" value="1"> -->
<label for="fname">reset:</label>
0<input type="radio" id="reset" name="reset" value="0" checked>
1<input type="radio" id="reset" name="reset" value="1"><br>
<!-- <input type="text" id="reset" value="1"> -->
<input type="submit" id="lec" value="Submit">
<input type="submit" id="new" value="New Flip Flop">
<!-- </form> -->
<div id="cell" class="cell-0">
</div>
<script src="index.js?v=1.1"></script>
</body>
</html>