Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Variable assignment
  • Loading branch information
nlz18001 committed Feb 3, 2024
1 parent 7d496dd commit 3c5c3ed
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions week-03/index.html
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 3 Assignment</title>
</head>
<body>
<h1>This is my simple web page!</h1>
<script>
let name = prompt("What is your name?")
console.log(`Greetings, ${name.toUpperCase()}. Welcome to my website!`)
</script>
</body>
</html>

0 comments on commit 3c5c3ed

Please sign in to comment.