Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
finished assignment
  • Loading branch information
kmr18006 committed Feb 1, 2024
1 parent 0a2b742 commit 6aff1e7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
19 changes: 19 additions & 0 deletions week-02/index.html
@@ -0,0 +1,19 @@
<!doctype html>
<html class="no-js" lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>What's your name?</title>
<meta name="description" content="window.prompt() practice">
</head>

<body>

<!-- Add your site or application content here -->
<p>Hello world!</p>
<script src="js/app.js"></script>

</body>

</html>
3 changes: 3 additions & 0 deletions week-02/js/app.js
@@ -0,0 +1,3 @@
let name = window.prompt("What's your name?");

console.log("Hello, welcome to my website, " + name.toUpperCase() + "!")

0 comments on commit 6aff1e7

Please sign in to comment.