Skip to content

Finished wk 2 assignment #1

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
added week 2 assignment
yuk23003 committed Jan 30, 2024
commit 6c82adac8f971210f5350a17f8783842c161e767
18 changes: 18 additions & 0 deletions week-02/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
let name = prompt("What is your name?");
let myName = name.toUpperCase();

alert(`Hello ${myName}! Welcome to my Website.`);

</script>

</body>
</html>