How to load the HTLM from HTTPS

I try to load the html from https, but loadImage doesn’t work.

Load from https://unicorninwonderland.com/

void setup(){
  // Load from https://unicorninwonderland.com/
  PImage image = loadImage( "https://unicorninwonderland.com/" );
}

Never mind it was LoadStrings and not loadImage
Load and print from https://unicorninwonderland.com/

void setup(){
  // Load from https://unicorninwonderland.com/
  String[] table = loadStrings( "https://unicorninwonderland.com/" );
  
  // Print the table
  for( int i = 0; i < table.length; i++ ){
    println( table[ i ]);
  }
}