Skip to content

Commit 9dbcbda

Browse files
committed
add script
1 parent 1b9b9db commit 9dbcbda

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

hello.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<script>
2+
alert ("Hello World! :)");
3+
</script>

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCYPE HTML>
2+
<html lang="pt-BR">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>JS Hello World</title>
6+
</head>
7+
<body>
8+
<h1>Meu primeiro script Javascript</h1>
9+
<script src="hello.js"></script>
10+
</body>
11+
</html>

0 commit comments

Comments
 (0)