/**
 * Set Anchor element display style.
 *
 * @param string $value Anchor display value.
 *
 * @return self Returns instance of the Anchor element class.
 *
 * @access public
 */
public function d(string $value): self

Examples

Set Anchor element display using fluent interface

use function Thermage\anchor;
use function Thermage\render;

// ...

render (
  anchor('Thermage')
    ->href('https://awilum.github.io/thermage/')
);
Terminal
$ php thermage.php

By default Alert element display state is block, but you can change it to none.