For a question in forum this is a working example, there will be the example that is not working

Dependencies:   mbed

Fork of eth_v13 by Heiko Greiner

html.h

Committer:
hggerdd
Date:
2014-03-18
Revision:
2:8f5bacfef390
Child:
3:79dc3337d9da

File content as of revision 2:8f5bacfef390:

#ifndef HTML_H_
#define HTML_H_

const char html_head[] = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nPragma: no-cache\r\n\r\n" \
                         "<html>\r\n<body>\r\n" \
                         "<title>Karl's W5100 web server (ATmega644p)</title>\r\n" \
                         "<h2>Karl's ATmega644p web server using Wiznet W5100 chip</h2>\r\n";

const char html_foot[] ="<br /><hr>\r\n";

#endif