/**
 * 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

Simple example of usage Anchor element with 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 Anchor element display state is inline, but you can change it to block or none.