Created
June 21, 2022 16:28
-
-
Save Pythonian/4086211affb83ceeb8fa748bb08e6349 to your computer and use it in GitHub Desktop.
Zuri Task Title: Introduction to Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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