Tab tabHTMLBox = new Tab();
tabHTMLBox.setText("HTML");
VBox htmlbox = new VBox();
htmlbox.setPadding(new Insets(5));
HTMLEditor htmlEditor = new HTMLEditor();
htmlEditor.setPrefHeight(200);
htmlEditor.setPrefWidth(300);
htmlbox.getChildren().add(htmlEditor);
tabHTMLBox.setContent(htmlbox);
tabPane.getTabs().add(tabHTMLBox);