dev-c++ icine nasıl html kodu konur

elimde Aşağıdaki kod var.Nasıl html kodu eklerim

kod:
#include
/* Declare Windows procedure *
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
/* Make the class name into a global variable *
char szClassName[ ] = "xxx";
int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)

/* The program return-value is 0 - The value that PostQuitMessage() gave *
return messages.wParam;
}

/* This function is called by the Windows function DispatchMessage() *
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)

return 0;
}
__________________