Skip to content

Commit c6fbe71

Browse files
committed
add files
1 parent 9dbcbda commit c6fbe71

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Javascript
2+
3+
Exercícios e experimentações do curso de Javascript.
File renamed without changes.

src/hello.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* JS - Hello World!
3+
* @author Luciana Muniz Freire
4+
*/
5+
6+
document.write("Hello World!");

index.html renamed to src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
</head>
77
<body>
88
<h1>Meu primeiro script Javascript</h1>
9-
<script src="hello.js"></script>
9+
<script src="hello.js" type="text/Javascript"></script>
1010
</body>
1111
</html>

0 commit comments

Comments
 (0)