Skip to content

Commit

Permalink
functions
Browse files Browse the repository at this point in the history
  • Loading branch information
kamshak committed May 5, 2024
0 parents commit b1a6fe1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
Empty file added get.js
Empty file.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My first Javascript code </title>
</head>
<body>
<h1>My name is kamshak</h1>
<script src="style.css"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function greet (name, lastName) {
console.log("hello " + name + " " + lastName);
}
greet("chinny", "philip");

0 comments on commit b1a6fe1

Please sign in to comment.