-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathregexer.html
50 lines (47 loc) · 1.61 KB
/
regexer.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0" />
<title>RegExer</title>
<link rel="stylesheet" type="text/css" href="./regexer.css">
<script type="text/javascript" src="./regexer.min.js"></script>
<!-- experemental with alpha version of CSSC -->
<script type="text/javascript" src="https://csscjs.com/cssc.min.js"></script>
<script type="text/javascript">
var regX;
window.onload = function()
{
regX = new RegExer("regexer");
};
</script>
<style type="text/css">
#regexer
{
top: 50px;
bottom: 40px;
position: absolute;
width: 100%;
}
#head
{
text-align: right;
font-family: monospace;
right: 11%;
position:absolute;
}
#copyright
{
bottom: 10px;
left: 11%;
position: absolute;
font-family: monospace;
font-size: 11px;
}
</style>
</head>
<body>
<div id="head"><h1>RegExer - 1.1b</h1></div>
<div id="regexer"></div>
<div id="copyright">© 2016 by Pavel | <a href="https://github.com/melPavel/RegExer" target="_blank">Source-Code</a> | <a href="./impressum.php" target="_blank">Impressum</a> </div>
</body>
</html>