Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html>
  <body>
    <!--

       ✅ 작성되어 있는 HTML 문서의 구조를 먼저 확인해보세요.
       
       이력서의 내용은 여러분이 My Little Resume에서 작성한 내용으로 수정하셔도 좋습니다!

    -->
    <h1>Resume</h1>
    
    <div class="image-wrapper">
      <img src="💬" />
    </div> 
    
    <h2>John</h2>
    
    <div class="container">
       <p>
        저는 John 입니다.
        제가 살아온 곳은 미국입니다.
        저는 미국에서 태어난 한국인입니다.
        
        이제는 한국에서 일하고 싶습니다.
        개발을 우연히 접하고, 개발자가 되고 싶다는 마음으로 한국에서 부트캠프를 수료했습니다.
      </p>
      <ul>
        <li>
          1990년 출생
        </li>
        <li>
          ABC 칼리지 졸업
        </li>
        <li>
          GREAT COMPANY에서 회계업무
        </li>
      </ul>
    </div>
  </body>
</html>

              
            
!

CSS

              
                /*

  Requirements check list [✅]

  [ ] body 내부의 모든 텍스트와 이미지는 가운데로 정렬 시켜주세요.
  [ ] body 내부의 모든 텍스트에 폰트를 적용시켜주세요.
  [ ] img 태그의 src 속성에 프로필 이미지 주소를 넣어주세요.
  [ ] 프로필 이미지의 가로 크기는 150px로 고정시켜주세요.
  [ ] 프로필 이미지에 3px 두께의 까만색 테두리를 추가해주세요.

*/

              
            
!

JS

              
                
              
            
!
999px

Console