In HTML, we can represent programming code, variables,keyboard input, and system responses using special tags.
Code Examples
Hello World
C Program:
#include
int main() {
printf("Hello World");
return 0;
}
JavaScript Program:
console.log("Hello World");