In HTML, we can represent programming code, variables, keyboard input, and system responses using special tags
HTML Program:
<html>
<body>
<p>Hello World</p>
</body>
</html>
C program:
#include
int main(){
printf("Hello World");
return 0;
}
JavaScript Program:
console.log("Hello World")
To copy text: ctrl+c
To paste text: ctrl+v
To save a file: ctrl+s
Speed=d / t
Area of Circle=π * r2
Example 1:
Input: 5 × 10
Output: 15
Example 2:
Code: ("Hello World");
output: Hello World