-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·36 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Machine Language Visualizer</title>
<link rel="stylesheet" type="text/css" href="main.css"></link>
<!-- these lines of code should add an image to the URL bar. -->
<link rel="icon" type="image/ico" href="MalvIcons/malvicon.ico"></link>
</head>
<body>
<div id="intro">
<img src="MalvIcons/MaLV.png" alt="malv logo">
</div>
<div id="links">
<!-- These links should eventually be serverfied-->
<a href="main.html">
<img src="MalvIcons/DFA.png" alt="TM logo" width="auto" height="30px">
</a>
<a href="Turing.html" style="padding-left:50px;">
<img src="Malv Icons/TMa.png" alt="TM logo" width="auto" height="30px">
</a>
</div>
<div id="info">
<h2>Info about the project</h2>
<p>
MaLV is a project for Computer Scientists by Computer Scientists to effectively and easily visualize machine languages.
<a href="http://en.wikipedia.org/wiki/Deterministic_finite_automaton">DFAs</a> and
<a href="http://en.wikipedia.org/wiki/Turing_machine">Turing Machines</a>.
</p>
</div>
</body>
</html>