Lessons learned in developing some useful things.
Keep looking, Don't settle.
부트스트랩 코드를 간단히 테스트해보고 싶을 때 html을 작성하고 js, css를 매번 입력하는게 번거롭고 귀찮았다. 필요할 때 복사해서 쓰기 위해 여기에 적어둔다.
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>(no title)</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> <style type="text/css"> </style> </head> <body> (no body) <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> </body> </html>