-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 717 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 717 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>NFAtoDFA</title>
<link rel="stylesheet"
type="text/css"
href="css/style.css">
<link rel="stylesheet"
type="text/css"
href="css/graph.css">
<script type="text/javascript" src="js/code.js" ></script>
</head>
<body>
<div class ="heading">
<h1>Regular Expression to DFA</h1>
</div>
<div class= "question">
<h3>ENTER REGULAR EXPRESSION</h3>
<input type="textBox" class ="box" id = "data">
<button type="button" class="inputButton" oninvalid=""onclick ="operation()">Go</button>
</div>
<div class="ans">
<table id = "myTable">
<tr>
</tr>
</table>
</div>
<h4>'*':Final State</h4>
<div class ="diagram" id="diag">
</div>
</body>
</html>