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

              
                <h1>Hey there</h1>
<p class="text">
 Hi, I'm Itay Haephrati.👋 As a UX engineer, I'm passionate about creating intuitive digital products that are not only easy to use, but also accessible to everyone. I believe that technology should be designed with inclusivity in mind, so that it can improve the lives of all people, regardless of their abilities.

One of my core values is a commitment to designing for accessibility. I believe that everyone should have equal access to technology, and that it's our responsibility as designers and engineers to make that a reality. That's why I spend a lot of time researching and implementing best practices for accessibility in all of my projects.

In addition to accessibility, I'm also passionate about design systems. By creating a consistent and cohesive design language across an entire product, we can create a better user experience and save time and resources in the long run. I love working on creating and maintaining design systems that make it easy for my team to create beautiful, effective products.

At the end of the day, my goal is to use my skills and experience to make technology more user-friendly and accessible to everyone. I believe that by doing so, we can make a real difference in people's lives, and I'm excited to continue working towards that goal in all of my projects.
</p>
              
            
!

CSS

              
                @import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");

.text {
  columns: auto clamp(250px, 7.5vw, 500px)
}

/* On mobile, add some space between the rows */
@media (max-width:570px) {
  .text {
    white-space: break-spaces;
  }
}











h1 {
  color: #1fff9d;
}
body {
  background: black;
  color: white;
  font-family: "Abel", sans-serif;
  display: grid;
  align-content: center;
  font-size: 18px;
  min-height: 100vh;
  margin: 0;
  padding: 0 5vmin;
  box-sizing: border-box;
}

              
            
!

JS

              
                // https://www.linkedin.com/in/itayhaephrati/
              
            
!
999px

Console