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>
    <h1>Resume</h1>
    
    <div class="image-wrapper">
      <img src="https://ca.slack-edge.com/TUC3CSLN8-U01MS0463UP-ff5867bdd3a6-512" />
    </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 [✅]

  [ ] container 클래스 div 태그의 너비가 600px 크기가 되게 해주세요.
  [ ] container 클래스를 가진 div 태그의 너비가 수평 가운데 정렬 되도록 만들어주세요. margin 속성을 활용해주세요.
  [ ] container 클래스에 스타일을 추가해서 p태그와 ul태그의 내용을 가로로 나란히 위치시켜주세요.

  [ ] p태그와 ul태그 내부의 텍스트들은 왼쪽으로 정렬 시켜주세요.
  [ ] p태그의 배경색은 까맣게, 텍스트는 하얗게 만들어주세요.
  [ ] p태그에 적당한 정도의 내부여백(padding)을 추가해주세요.
  [ ] border-radius 속성을 이용해서 p태그의 모서리를 둥글게 만들어주세요.
  
  [ ] ul태그의 내부여백(padding)을 제거해주세요.
  [ ] ul태그의 왼쪽 바깥여백(margin)을 5px 추가해주세요.

*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&display=swap');

body {
  text-align: center;
  font-family: 'IBM Plex Sans KR', sans-serif;
}

.image-wrapper > img {
  width: 150px;
  border: 3px solid black;
}

              
            
!

JS

              
                
              
            
!
999px

Console