coercive/head

Coercive Utility Head

0.0.6 2023-10-13 13:40 UTC

This package is auto-updated.

Last update: 2024-05-13 14:45:13 UTC


README

Handler for html head tags

Get

composer require coercive/head

Example

<?php

$head = new Head;

# Meta Title
$head->Title()->setContent('example title');

# Meta Description
$head->Description()->setContent('example description');

# Meta Keywords
$head->Keywords()->setContent('example test');

# Show
echo $head->toHtml();