Skip to content

Instantly share code, notes, and snippets.

@Pythonian
Created June 21, 2022 16:28
Show Gist options
  • Save Pythonian/4086211affb83ceeb8fa748bb08e6349 to your computer and use it in GitHub Desktop.
Save Pythonian/4086211affb83ceeb8fa748bb08e6349 to your computer and use it in GitHub Desktop.
Zuri Task Title: Introduction to Javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Title: Introduction to Javascript</title>
</head>
<body>
<script>
let name, height, country;
name = prompt("My Name? ");
height = prompt("My Height in cm? ");
country = prompt("My Country? ");
document.write("My name is " +name+ ". I am " +height+ "cm tall and I am from " +country+ ".");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment