wir müssen c: nehmen.
habe es mal so gemacht:
#include "stdafx.h"
int main()
{
FILE *fDatei;
fDatei = fopen("HTML.html", "w+");
fputs("<html><head><title>Mirko</title></head><body>Mirko</body></html>", fDatei);
fclose(fDatei);
system("Pause");
}
funktioniert schonmal. ist aber noch nicth so toll.
wie kann man in c sagen, welche schrift/farbe dann im html dokument sein soll?