There was an error while loading. Please reload this page.
1 parent 1b9b9db commit 9dbcbdaCopy full SHA for 9dbcbda
hello.html
@@ -0,0 +1,3 @@
1
+<script>
2
+alert ("Hello World! :)");
3
+</script>
hello.js
@@ -0,0 +1,6 @@
+/**
+* JS - Hello World!
+* @author Luciana Muniz Freire
4
+*/
5
+
6
+document.write("Hello World!");
index.html
@@ -0,0 +1,11 @@
+<!DOCYPE HTML>
+<html lang="pt-BR">
+<head>
+<meta charset="UTF-8">
+<title>JS Hello World</title>
+</head>
7
+<body>
8
+<h1>Meu primeiro script Javascript</h1>
9
+<script src="hello.js"></script>
10
+</body>
11
+</html>
0 commit comments