Use css positioning:
index.html
style.css
.parent {
position: relative;
height: 1000; /* bigger than your svg */
width: 1000; /* bigger than your svg */
}
.child {
position: absolute;
top: 10px; /* relative to parent container */
left: 10px; /* relative to parent container */
}