mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +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>
 | 
