-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (105 loc) · 4.35 KB
/
index.html
File metadata and controls
107 lines (105 loc) · 4.35 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<title>Simulator de Logica digitala</title>
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/responsee.css">
<link rel="stylesheet" href="simulator/components.css">
<link rel="stylesheet" href="css/stuff.css">
<!-- CUSTOM STYLE -->
<link rel="stylesheet" href="css/template-style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/responsee.js"></script>
<script type="text/javascript" src="simulator/libs/jquery.jsPlumb-1.7.2-min.js"></script>
<script type="text/javascript" src="simulator/libs/jquery-ui.min.js"></script>
<script type="text/javascript" src="simulator/simulator.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="size-1140">
<!-- TOP NAV WITH LOGO -->
<header>
<nav>
<div class="line">
<div class="top-nav">
<div class="logo hide-l">
<a href="index.html">Logic <br /><strong>SIM</strong></a>
</div>
<p class="nav-text">Custom menu text</p>
<div class="top-nav s-12 l-5">
<ul class="right top-ul chevron">
<li><a href="index.html">Home</a>
</li>
</ul>
</div>
<ul class="s-12 l-2">
<li class="logo hide-s">
<a href="index.html">LOGIC <br /><strong>SIM</strong></a>
</li>
</ul>
<div class="top-nav s-12 l-5">
<ul class="top-ul chevron">
<li>
<a>Componente</a>
<ul>
<li><a href="components/and.html">AND</a>
</li>
<li><a href="components/or.html">OR</a>
</li>
<li><a href="components/xor.html">XOR</a>
</li>
<li><a href="components/not.html">NOT</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<section>
<div id="head">
<div class="line">
<h1>Simulator de logica digitala</h1>
</div>
</div>
<div id="first-block">
<nav id="controls">
<div class="line" id="control_wrap">
<div class="top-nav">
<p class="nav-text">Custom menu text</p>
<div class="top-nav s-12 l-12">
<ul class="left top-ul chevron">
<li><a onclick="new Components.And(30,30);">And</a></li>
<li><a onclick="new Components.Or(30,30);">Or</a></li>
<li><a onclick="new Components.Xor(30,30);">Xor</a></li>
<li><a onclick="new Components.Not(30,30);">Not</a></li>
<li><a onclick="new Components.Switch(30,30);">Buton</a></li>
<li><a onclick="new Components.Light(30,30);">Bec</a></li>
<li style="float:right"><a onclick='$("#screen").empty()'>Sterge Tot</a></li>
</ul>
</div>
</div>
</div>
</nav>
<div id="screen">
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="line">
<div class="s-12 l-6">
<p>Copyright 2015
</p>
</div>
</div>
</footer>
</body>
</html>