lazarus/components/turbopower_ipro/examples/htmlwithcss.lpr
2019-10-28 18:43:39 +00:00

18 lines
226 B
ObjectPascal

program htmlwithcss;
{$mode objfpc}{$H+}
uses
Interfaces,
Forms, htmlwithcssfrm;
{$R *.res}
begin
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.