In HTML, we can represent programming code, variables, keyboard input, and system responses using special tags
Hello World
console.log("Hello World");
#Include <stdio.h>
int main() {
printf("Hello World");
return 0;
}
The system Messages is: Hello World