You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
539 B
HTML
36 lines
539 B
HTML
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<title>Question Nodes</title>
|
||
|
<style>
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
html, body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
div {
|
||
|
height: 20%;
|
||
|
text-align: center;
|
||
|
font-size: 36px;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
svg {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 80%;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<svg id="canvas"></svg>
|
||
|
</body>
|
||
|
<script type="text/javascript" src="nodesscript.js">
|
||
|
</script>
|
||
|
|
||
|
</html>
|