Created
July 3, 2019 02:42
-
-
Save Kkan9ma/87bf848cb71ade90cac021f0b84e5ade to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>구구단 연습</title> | |
</head> | |
<body> | |
<h1>구구단 연습하기</h1> | |
<script> | |
document.write("2 * 1 = " + 2 * 1 + "<br>"); | |
document.write("2 * 2 = " + 2 * 2 + "<br>"); | |
document.write("2 * 3 = " + 2 * 3 + "<br>"); | |
document.write("2 * 4 = " + 2 * 4 + "<br>"); | |
document.write("2 * 5 = " + 2 * 5 + "<br>"); | |
document.write("2 * 6 = " + 2 * 6 + "<br>"); | |
document.write("2 * 7 = " + 2 * 7 + "<br>"); | |
document.write("2 * 8 = " + 2 * 8 + "<br>"); | |
document.write("2 * 9 = " + 2 * 9); | |
console.log("3 * 1 = " + 3 * 1); | |
console.log("3 * 2 = " + 3 * 2); | |
console.log("3 * 3 = " + 3 * 3); | |
console.log("3 * 4 = " + 3 * 4); | |
console.log("3 * 5 = " + 3 * 5); | |
console.log("3 * 6 = " + 3 * 6); | |
console.log("3 * 7 = " + 3 * 7); | |
console.log("3 * 8 = " + 3 * 8); | |
console.log("3 * 9 = " + 3 * 9); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment