
Patrick B. answered 06/25/19
Math and computer tutor/teacher
technically, YES!
You can write HTML commands to an HTML document.
When you double click it to open it up, the browser will read it, and render it.
Here is a simple example......
==============================================================
Program MyWebsiteHTML;
uses SysUtils;
var outfile: Text;
BEGIN
assign(outfile,'mywebsite.html');
rewrite(outfile);
writeln(outfile,' <HTML> ');
writeln(outfile,' <BODY> ');
writeln(outfile,' <B> MY WEBSITE FROM PASCAL !!! </B> ');
writeln(outfile,' </BODY> ');
writeln(outfile,' </HTML> ');
Close(outfile);
end.