1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19<!DOCTYPE html> <html> <head> <title>Graph with Table</title> </head> <body> <script type="text/javascript"> function updateLabel(label) { document.getElementById('labelCell').innerText = label; } </script> <table><tr><td>Task: </td><td id="labelCell">Click on a skill to to see the task</td></tr></table> <iframe src="dependencies.html" width="100%" height="800px"></iframe> </body> </html>