import javafx.application.Application; 
import javafx.scene.Scene; 
import javafx.scene.web.WebView; 
import javafx.stage.Stage; 
  
public class WebViewSample4K extends Application { 

public static final String url = "https://news.google.ca/"; 

@Override public void start(Stage stage) { 
WebView webview = new WebView(); 

        // create the scene 
    	Scene scene = new Scene(webview); 
        stage.setScene(scene); 
        stage.show(); 
         
		webview.setFontScale(1.5); 
        // load the web page 
		webview.getEngine().load( url ); 

    } 
  
    public static void main(String[] args){ 		
        launch(args); 
    } 
} 