import com.sun.javafx.runtime.VersionInfo; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.HBox; import javafx.scene.web.HTMLEditor; import javafx.stage.Stage; public class HTMLSample extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { stage.setTitle(VersionInfo.getRuntimeVersion()); HBox root = new HBox(4); root.getChildren().add(new HTMLEditor()); Scene scene = new Scene(root, 600, 400); stage.setScene(scene); stage.show(); } }