/// Name: Connor Siri /// Period: 7 /// Program Name: Simple /// File Name: Simple.java /// Date Finished:3/31/2016 import java.net.URL; import java.util.Scanner; public class Simple { public static void main(String[] args) throws Exception { URL mURL = new URL("http://llhscp-css.neocities.org"); Scanner webIn = new Scanner(mURL.openStream()); while (webIn.hasNext()) { String one = webIn.nextLine(); System.out.println(one); } } }