coercive/head

Coercive Utility Head

0.0.7 2024-09-17 13:19 UTC

This package is auto-updated.

Last update: 2024-10-17 13:27:57 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();