-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
133 lines (115 loc) · 3.91 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Enes Karali</title>
<link rel="manifest" href="manifest.json">
<link rel="icon" sizes="256x256" href="images/ns.PNG">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('sw.js')
.then((reg) => { console.log('SW Registered', reg) })
.catch(console.log)
}
</script>
<style>
body {
background-color: #d4e6d9;
}
ul dt {
background: #92bba1;
font-size: 20px;
line-height: 35px;
height: 40px;
margin: 5px;
text-align: center;
vertical-align: middle;
width: 400px;
}
ul {
background: #345e44;
padding: 15px;
width: 420px;
}
dt:hover {
background: #c0ddbc;
padding: 0px;
}
a:link {
color: black;
text-decoration: unset;
}
a:visited {
color: black;
text-decoration: underline;
}
a:hover {
color: rgb(65, 24, 5);
text-decoration: underline;
}
</style>
</head>
<header>
</header>
<body>
<div align="center" style="max-width: 99%; height: auto; ">
<h2 style="color: rgb(11, 44, 16);">My Term Project</h2>
<ul>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/TermProject/">PDA Visualization</a></p>
</dt>
</ul>
<h2 style="color: rgb(11, 44, 16); ">My Class Works</h2>
<ul>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW2/CW2.html">CW2
-
DFA-NFA-RegExp</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW3/regEx.html">CW3 - Regular
Expressions</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW4/palindromes.html">CW4 - Context
Free Grammar</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW5/Expression.html">CW5
-
Expression Parser</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW6/PDA.html">CW6
-
PDA</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/CW7/microJ3.html">CW7
-
MicroJ Prime Numbers Program</a></p>
</dt>
</ul>
<h2 style="color: rgb(11, 44, 16);">My Homeworks</h2>
<ul>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/HW1/hw1.html">HW1 -
Text Coloring with RegExp</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/HW2/Expression.html">HW2 -
Math Functions Implementation</a></p>
</dt>
<dt>
<p><a target="_self" href="https://eneskarali.github.io/automataLab/HW3/microJ1.html">HW3 -
MicroJ1 withValue Rule İmplementation</a></p>
</dt>
</ul>
<p style="font-size: 20px;color:#345e44">Github: <a target="_blank"
href="https://github.com/eneskarali/automataLab">My Github Repo</a></p>
</div>
</div>
</body>
</html>