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>
<!--this is task 9! -->
 
<p style="font-family:Copperplate"><a href="https://autumnjay.com/">link to my website!</a>
<!--this is link 1 for task 6-->
<p style="font-family:Copperplate"><a href="https://autumnjay.com/clients/">link to my client site!</a>
<!--this is link 2 for task 6-->
   <h1 id="myHeader"> Hello!</h1>
<!--example of an ID for task 8!-->
<h1 style="font-family:Copperplate">hello!</>
<h2 style="font-family:Copperplate">this is me learning html and CSS for my website.</>
<h3 style="font-family:Copperplate"> This week I will be playing with lists and tables and charts
</> 
<h5 style="font-family:Copperplate"> -
</> 
<table style="width:90%">
  <tr>
    <th>website name</th>
    <th>url</th>
    <th>Company</th>
  </tr>
  <tr>
    <td>Autumn Chapmans Website</td>
    <td>www.autumnjay.com</td>
    <td>Autumn Chapman</td>
  </tr>
  <tr>
    <td>BoomerTech Adventures</td>
    <td>www.boomertechadventures.com</td>
    <td>BoomerTech</td>
  </tr>
</table>
<!-- This is my table for task 9 -->
<h4 style="font-family:Copperplate"> -
</> 
  <ol>
  <li>This</li>
  <li>is a</li>
  <li>list</li>
</ol>
<!-- my numbered list for task 9  -->
<dl>
  <dt>Autumns Website</dt>
  <dd>- my portfolio webiste</dd>
  <dt>BoomerTech Adventures</dt>
  <dd>- my client site</dd>
</dl>
<!-- my other list for task 9  -->
<h3 style="font-family:Copperplate"> -
</> 
<!-- an example of redefining with CSS for task 8!-->
<img src="https://autumnjay.com/wp-content/uploads/2021/03/Image-3-10-21-at-12.26-PM.jpg"
alt="HTML5 Icon" width="300" height="300">
<!--this is image 1 for task 6-->
<h3 style="font-family:Copperplate"> -
</> 
<img src="https://www.autumnjay.com/clients/wp-content/uploads/2021/03/cropped-boomertech-adventures-logo.png"
alt="HTML5 Icon" width="300" height="100">
</a>
<!--this is image 2 with an image link for task 6-->

<p>Here is a quote from the original BoomerTech webpage:</p>
<blockquote cite="https://www.boomertechadventures.com/">
WE PROVIDE EXPERT GUIDANCE AND PERSONALIZED RESOURCES FOR BOOMERS TO DEVELOP THEIR COMPETENCE AND CONFIDENCE USING APPLE DEVICES.
</blockquote>
<!-- this is the blockquote for task 7 -->

<div class="style">
  <h2>style</h2>
<h4 style="font-family:Copperplate"><b> this is bold</b></h4>
<h5 style="font-family:Copperplate"><i> this is italic</></h5>
<h6 style="font-family:Copperplate"><p> this is <mark>marked text</mark></p></h6>
  </div>
<!-- this is the class "style" created for task 8 including the styles I used for task 5 -->


              
            
!

CSS

              
                body {  background-color: #E6E6FA};
<!-- this is the hexidecimal background color for task 7 -->


h1 {text-align: center;
    color: grey;
    font-size: 75px}
h2 {text-align: center;
    font-size: 30px}
h3 {text-align: center;
  font-size: 20px;
  color: purple;}
h4 {font-size: 15px;
  color: indigo;}
h5 {text-align: center;
  font-size: 15px;
  color: violet;}
h6 {text-align: center;
  font-size: 15px;
  color: blueviolet;}

table {text-align: center}

img {text-align: center;
  font-size: 15px;
  color: blueviolet;}


              
            
!

JS

              
                
              
            
!
999px

Console