INSPECT
variable_name = gets.chomp gets is the Ruby method that gets input from the user. When getting input, Ruby automatically adds a blank line (or newline) after each bit of input; chomp removes that extra line. (Your program will work fine without chomp, but you'll get extra blank lines everywhere.) As you might have noticed, Ruby's not really returning any feedback to us. We want to be able to see..
[CSS] 웹 폰트 사용하기 대표적인 웹 폰트 제공 사이트- Google Fonts http://www.google.com/fonts- Google Fonts Early Access http://www.google.com/fonts/earlyaccess 영어 이외의 글자는 Google Fonts Early Access에서 가져다 쓰면 된다.Ctrl+F 로 Korean을 찾아 쓰면 된다. 원하는 폰트를 찾으면 링크와 사용법이 나온다. @import url(http://fonts.googleapis.com/earlyaccess/nanumpenscript.css);위 링크를 css에 삽입한 뒤 font-family: 'Nanum Pen Script', cursive;사용법 대로 적용해주면 된다. 이런식으로 웹..