26 строки
722 B
HTML
26 строки
722 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>SuperGraph</title>
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.css"
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
/>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<script src="supergraph.js" type="text/javascript"></script>
|
|
<input
|
|
type="text"
|
|
name="signature"
|
|
id="signature"
|
|
placeholder="Signature or SuperSearch query..."
|
|
style="width: 70%"
|
|
/>
|
|
<button id="signatureButton">Generate</button>
|
|
<div id="graph" style="height: 90vh"></div>
|
|
</body>
|
|
</html>
|