Arduino serial monitor to write posts that can not be understood

I want to try a project examples provided in Arduino, but I am having a problem. that is written by the Arduino serial monitor can not be understood.

I just tried to make an example: running backsoon using ENC28J60. if anyone can help?

I use the library: GitHub - njh/EtherCard: EtherCard is an IPv4 driver for the ENC28J60 chip, compatible with Arduino IDE

// Present a "Will be back soon web page", as stand-in webserver.
// 2011-01-30 <jc@wippler.nl> http://opensource.org/licenses/mit-license.php
 
#include <EtherCard.h>

#define STATIC 0  // set to 1 to disable DHCP (adjust myip/gwip values below)

#if STATIC
// ethernet interface ip address
static byte myip[] = { 192,168,1,200 };
// gateway ip address
static byte gwip[] = { 192,168,1,1 };
#endif

// ethernet mac address - must be unique on your network
static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 };

byte Ethernet::buffer[500]; // tcp/ip send and receive buffer

char page[] PROGMEM =
"HTTP/1.0 503 Service Unavailable\r\n"
"Content-Type: text/html\r\n"
"Retry-After: 600\r\n"
"\r\n"
"<html>"
  "<head><title>"
    "Service Temporarily Unavailable"
  "</title></head>"
  "<body>"
    "<h3>This service is currently unavailable</h3>"
    "<p><em>"
      "The main server is currently off-line.
"
      "Please try again later."
    "</em></p>"
  "</body>"
"</html>"
;

void setup(){
  Serial.begin(57600);
  Serial.println("\n[backSoon]");
  
  if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) 
    Serial.println( "Failed to access Ethernet controller");
#if STATIC
  ether.staticSetup(myip, gwip);
#else
  if (!ether.dhcpSetup())
    Serial.println("DHCP failed");
#endif

  ether.printIp("IP:  ", ether.myip);
  ether.printIp("GW:  ", ether.gwip);  
  ether.printIp("DNS: ", ether.dnsip);  
}

void loop(){
  // wait for an incoming TCP packet, but ignore its contents
  if (ether.packetLoop(ether.packetReceive())) {
    memcpy_P(ether.tcpOffset(), page, sizeof page);
    ether.httpServerReply(sizeof page - 1);
  }
}

what exactly is wrong?

Set your Serial monitor to 57600 baud

Set your Serial monitor to 57600 baud

And please, please, don't ask your question in mile high neon red letters.

LarryD:
Set your Serial monitor to 57600 baud

waw. thank you friend.

and I do not know how to create Arduino, online with ENC28J60, if anyone could help me make this ENC28J60 online. ?

do I have to provide hosting to make this Arduino online.

I want to make an example project: control relay with ENC28J60.

if anyone can give a hint. :.

Reading material concerning your ENC28J60 Ethernet chip.

https://www.google.com/search?as_q=ENC28J60&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=http%3A%2F%2Fforum.arduino.cc%2Findex&as_occt=any&safe=images&tbs=&as_filetype=&as_rights=

zoomkat:
Reading material concerning your ENC28J60 Ethernet chip.

ENC28J60 site:http://forum.arduino.cc/index - Google Search

I tried DHCP. but why are the results so here.

and how do I change the setting from "no network access" to "internet acces" I do not use a router. just use a usb modem to connect to the internet.

if anyone can help. ?

You would need to configure your PC to act as a router ("Internet Connection Sharing") and either give your Arduino a static IP address in the same subnet as the PC interface, or enable DHCP on the PC.

@ikhwanulfikri, please stop SHOUTING.