Simple types / Strings

uses System.SysUtils;

var
  FontSize: Integer;
  FontFamily, Style1: string;
begin
  FontSize := 14;
  FontFamily := 'Arial';

  //no string interpolation in Delphi;
  //Format covers the need
  Style1 := Format(
    'font-size: %d; font-family: "%s"',
    [FontSize, FontFamily]);
  //'font-size: 14; font-family: "Arial"'

  WriteLn('style1 is ', Style1);
end.