There was an error while loading. Please reload this page.
1 parent 9dbcbda commit c6fbe71Copy full SHA for c6fbe71
README.md
@@ -1 +1,3 @@
1
# Javascript
2
+
3
+Exercícios e experimentações do curso de Javascript.
hello.html src/hello.htmlhello.html renamed to src/hello.html
src/hello.js
@@ -0,0 +1,6 @@
+/**
+* JS - Hello World!
+* @author Luciana Muniz Freire
4
+*/
5
6
+document.write("Hello World!");
index.html src/index.htmlindex.html renamed to src/index.html
@@ -6,6 +6,6 @@
</head>
7
<body>
8
<h1>Meu primeiro script Javascript</h1>
9
-<script src="hello.js"></script>
+<script src="hello.js" type="text/Javascript"></script>
10
</body>
11
</html>
0 commit comments