websFooter GoAhead WebServer API GoAhead EMF

Synopsis

Output the common HTML tags to close out a web page

Prototype

#include "webs.h"
   	       
void websFooter(webs_t wp);

Parameters

wp Web server connection handle

Description

The websFooter procedure outputs the standard HTML tags to finish a web page. It outputs the following HTML code:

</html>

Return Value

None

Example

websHeader(wp);
websWrite(wp, "Great Day Today");
websFooter(wp);
websDone(wp);

See Also

websDone, websHeader, websWrite