public static function GetLink(string $fileName, LJCTextState $textState) : string
Gets the link element for a style sheet.
Example
PHP
// Gets the element for a style sheet.
private static function GetLink()
{
// Root Method Begin
$textState = new LJCTextState();
// Example Method:
$result = LJCHTML::GetLink("CSS/File.css", $textState);
// result:
// <link href="CSS/File.css" rel="stylesheet" />
}