Add proper styling.
This commit is contained in:
parent
a15fcadc21
commit
d282c57354
|
@ -8,17 +8,23 @@
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="container">
|
||||||
<h1>IDLab Turtle Validator</h1>
|
<h1>IDLab Turtle Validator</h1>
|
||||||
<p>This is the web version of the NodeJS <a href="https://github.com/mmlab/TurtleValidator">Turtle Validator</a>,
|
<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>
|
which is also available as a command line tool.</p>
|
||||||
<h2>Paste your turtle file in here and press validate</h2>
|
<h2>Paste your turtle file in here and press validate</h2>
|
||||||
<form>
|
<form>
|
||||||
|
<div class="form-group">
|
||||||
<textarea class="area" id="ta_turtle"></textarea>
|
<textarea class="area" id="ta_turtle"></textarea>
|
||||||
<input type="button" id="btn_validate" value="Validate!"/>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<input type="button" id="btn_validate" class="btn btn-default" value="Validate!"/>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<ul id="errors"></ul>
|
<ul id="errors"></ul>
|
||||||
<ul id="warnings"></ul>
|
<ul id="warnings"></ul>
|
||||||
<p id="results"></p>
|
<p id="results"></p>
|
||||||
<script src="js/app.js"></script>
|
<script src="js/app.js"></script>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue