<!DOCTYPE html>
<html>
<head>
<script>
customElements.define("in-head", class extends {
connectedCallback() {
console.log(this, "in:", this.parentNode);
}
});
</script>
<in-head></in-head>
<title></title>
<style>
body {
background: green;
}
</style>
<script>
console.log("End of head", document.body.children);
</script>
</head>
<body>
</body>
</html>
Can a Lit element go in the <head> tag?
```html
```