mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 16:05:08 +00:00
11 lines
298 B
HTML
11 lines
298 B
HTML
<!DOCTYPE html><html><head><style>
|
|
* {
|
|
font: 20px 'SerenitySans';
|
|
}
|
|
</style></head><body>
|
|
<textarea>Bonjour mon amis!</textarea>
|
|
<script>
|
|
const textarea = document.createElement("textarea");
|
|
textarea.innerText = "Well hello friends!";
|
|
document.body.appendChild(textarea);
|
|
</script>
|