turtle-web-editor/public/index.html

23 lines
805 B
HTML

<html>
<head>
<title>Turtle validator</title>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/ttl.js"></script>
<link rel="stylesheet" href="css/style.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<h1>MMLab Turtle Validator</h1>
<h2>Paste your turtle file in here and press validate</h2>
<form>
<textarea class="area" id="ta_turtle"></textarea>
<input type="button" id="btn_validate" value="Validate!"/>
</form>
<p id="errors"></p>
<p id="warnings"></p>
<p id="results"></p>
<script src="js/app.js"></script>
</body>
</html>