mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05: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>
|