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

              
                <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>A Perfect Semantic HTML Example</title>
</head>

<body>
    <header>
        <nav class="website-nav">
            <a href="#">Home</a>
            <a href="#">About</a>
            <a href="#">Services</a>
            <a href="#">Contact</a>
        </nav>
    </header>
    <main>
        <header>
            <h1>Welcome to our guide</h1>
          <nav class="table-of-contents">
            <a href="#definition">Definition</a>
            <a href="#benefits">Benefits</a>
        </nav>
        </header>
        <section>
            <h2 id="definition">What is Semantic HTML?</h2>
            <p>Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look.</p>
            <p>It uses HTML tags for their implied meaning, enhancing the richness of the content and improving the overall accessibility of the site.</p>
        </section>
        <section>
            <h2 id="benefits">Benefits of Using Semantic HTML</h2>
            <p>Using semantic HTML can improve accessibility, provide better readability for software programs like search engines and screen readers, and also allow for better document representation on a variety of platforms.</p>
            <p>Search engines rank your site better, screen readers interpret your site more efficiently, and your content stays meaningfully intact as technologies evolve.</p>
        </section>
    </main>
    <footer>
        <p>Copyright &copy; 2023 Perfect Semantic HTML Inc.</p>
    </footer>
</body>

</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console