import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

public class LoadURL extends Application{

	public void start(Stage primaryStage) throws Exception {
	    primaryStage.setTitle(System.getProperty("java.runtime.version"));             

	    WebView  browser = new WebView();
	    WebEngine engine = browser.getEngine();
	    engine.load("https://bl.ocks.org/anonymous/raw/59f7a5edbbd25d80f6217135ff0b4d79/7a71cb592a7b07578c5271077e47657021c71487/");

	    StackPane sp = new StackPane();
	    sp.getChildren().add(browser);

	    Scene scene = new Scene(sp);

	    primaryStage.setScene(scene);
	    primaryStage.show();
	}
	public static void main(String[] args) {
		launch(args);
	}
}
