* the value of the {@code name} attribute.
* @param content
* the value of the {@code content} attribute.
*/
public static void inject(String name, String content) {
HeadElement head = getHead();
MetaElement element = createMetaElement();
element.setName(name);
element.setContent(content);
head.appendChild(element);
}