We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ca458 commit 34020cdCopy full SHA for 34020cd
2 files changed
c/ravijohnmark.c
@@ -0,0 +1,5 @@
1
+#include<stdio.h>
2
+void main()
3
+{
4
+ printf("Hello World");
5
+}
html/ravijohnmark.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<script>
+function myFunction() {
+ document.getElementById("hello").innerHTML = "Hello World!";
6
7
+</script>
8
+</head>
9
+
10
+<body>
11
12
+<button onclick="myFunction()">Hello World</button>
13
14
+<p id="hello"></p>
15
16
+</body>
17
+</html>
0 commit comments