turtle-web-editor/index.html

31 lines
1.0 KiB
HTML
Raw Normal View History

2015-07-14 19:23:35 +02:00
<html>
<head>
<title>Turtle validator</title>
2020-04-29 14:04:01 +02:00
<script src="js/jquery-2.1.4.min.js"></script>
2015-07-14 19:23:35 +02:00
<script src="js/ttl.js"></script>
<link rel="stylesheet" href="css/style.css">
2020-04-29 14:04:01 +02:00
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
2015-07-14 19:23:35 +02:00
</head>
<body>
2016-11-29 11:18:21 +01:00
<div class="container">
<h1>IDLab Turtle Validator</h1>
<p>This is the web version of the NodeJS <a href="https://github.com/mmlab/TurtleValidator">Turtle Validator</a>,
which is also available as a command line tool.</p>
<h2>Paste your turtle file in here and press validate</h2>
<form>
<div class="form-group">
2020-04-29 15:22:06 +02:00
<textarea class="area" id="ta_turtle"></textarea>
2016-11-29 11:18:21 +01:00
</div>
<div class="form-group">
<input type="button" id="btn_validate" class="btn btn-default" value="Validate!"/>
</div>
</form>
<ul id="errors"></ul>
<ul id="warnings"></ul>
<p id="results"></p>
<script src="js/app.js"></script>
</div>
2015-07-14 19:23:35 +02:00
</body>
</html>