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

              
                <head>
    <body>
        <header>
            <h1>MODULE 4</h1>
        </header>
    </body>
</head>
<p><b>What are Links?</b></p>
<ul>
    <li>
      A link short for hyperlink is a bit of text, an image, or a button in a hypertext document that you can click. 
        A hyperlink may include a link to another document or to another part of the current page.
        Hyperlinks are found on virtually every webpage to help navigate readers to other pages and websites.
    </li>
</ul>
<p><b>How do you create links on a webpage?</b></p>
<ul>
    <li>
      Creating a link on your web page or blog requires an HTML a href tag to be inserted in the body section of the HTML source code. Once the link is created, a visitor can click or tap the link to open another web page or file.
    </li>
</ul>
<p><b>How you can create links using the anchor tag?</b></p>
<ul>
  <li>
    The <a> Tag or Anchor Tag in HTML is used to create a hyperlink on the webpage. This hyperlink is used to link the webpage to other web pages or some section of the same web page. It’s either used to provide an absolute reference or a relative reference as its “href” value.
    <br></br>
    The most basic, fundamental way to use anchor tags in your code is to simply link from one page to another by wrapping anchor tags around a bit of text, like this:
<a href=”link.html”>href="link.html"</a>
  </li>
</ul>
<br></br>
<p>click to see Module 5:
  <a href="https://codepen.io/RUSZEN-MYRSON-COMIN/pen/GRLpvKX">click to see Module 5</a></p>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console