ADD : add korean readme skeleton file

This commit is contained in:
minwook-shin
2020-11-17 19:10:04 +09:00
parent 4918b11e8f
commit 35a2e57a7e
29 changed files with 5539 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# Event-Driven Programming - Build a Typing Game
## Introduction
Typing is one of the most underrated skills of the developer. The ability to quickly transfer thoughts from your head to your editor allows creativity to flow freely. One of the best ways to learn is to play a game!
> So, let's build a typing game!
You're going to use the JavaScript, HTML and CSS skills you have built up so far to create a typing game. The game will present the player with a random quote (we're using [Sherlock Holmes](https://en.wikipedia.org/wiki/Sherlock_Holmes) quotes) and time how long the player takes to type it out accurately. You're going to use the JavaScript, HTML and CSS skills you have built up so far to create a typing game.
![demo](images/demo.gif)
## Prerequisites
This lesson assumes you're familiar with the following concepts:
- Creating text input and button controls
- CSS and setting styles using classes
- JavaScript basics
- Creating an array
- Creating a random number
- Getting the current time
## Lesson
[Creating a typing game by using event driven programming](./project/README.md)
## Credits
Written with ♥️ by [Christopher Harrison](http://www.twitter.com/geektrainer)