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년 출생
          <img src="💬" />
        </li>
        <li>
          ABC 칼리지 졸업
          <img src="💬" />
        </li>
        <li>
          GREAT COMPANY에서 회계업무
          <img src="💬" />
        </li>
      </ul>
    </div>
  </body>
</html>

              
            
!

CSS

              
                /*

  Requirements check list [✅]

  [ ] li태그에 원하는 색으로 배경색을 추가해주세요.
  [ ] li태그에 적당한 내부 여백(padding)을 추가해주세요.
  [ ] li태그의 하단에 적당한 외부 여백(margin)을 추가해주세요.
  [ ] border-radius 속성을 이용해서 li태그의 모서리를 둥글게 만들어주세요.
  [ ] 경력이 적힌 li태그 내부에 경력과 관련된 이미지를 추가해주세요.
  [ ] 경력 관련 이미지의 너비와 높이는 30px로 고정시켜주세요.
  [ ] border-radius 속성을 활용해 경력 관련 이미지를 동그란 모양으로 만들어주세요.
  [ ] li태그에 있는 텍스트와 이미지를 정렬시켜주세요.
      - 수평으로는 양 옆에 붙어서 위치하도록,
      - 수직으로는 가운데에 정렬되도록 만들어주세요.
      - flex container의 속성인
          justify-content와
          align-items를 이용하세요!
      - hint: space-between, center
*/


@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;
}

.container {
  width: 600px;
  margin: 0 auto;
  
  display: flex;
}

p, ul {
  flex: 1;
  text-align: left;
}

p {
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 10px;
}

ul {
  padding: 0;
  margin-left: 10px;
}

              
            
!

JS

              
                
              
            
!
999px

Console