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

              
                <h5 id="a1">Assignment 1</h5>
<!-- Assignment 1 -->

<!DOCTYPE html>
<html>
  <head>
    <title>Hani Mansour Profile</title>
    <meta charset="UTF-8" />
    <!-- Base html element, used to open all page links in another window -->
    <base target="_blank"/>
    <meta name="author" content="Hani Mansour">
    <meta name="Description" content="Hani Mansour Profile, Skills, Clients"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
   </head>
   <body>
    <h2>My Info</h2>
    <p>My Name Is: <b>Hani Mansour</b></p>
    <p>Iam <strong>Available</strong> For Hire</p>
    <p>M Hour Old Price Is <del>$10</del> And The New Price is <mark>$30</mark></p>
    <p>Visit My Web Site From This Link <a href="https://hani2up.blogspot.com" title="Hani Mansour Website">Hani Mansour</a></p>
    <hr>
    <h2>Here Is Some Of My Clients</h2>
    <img src="https://bit.ly/3NFKsPi" alt="first client" width="100px" height="100px"/>
    <img src="https://bit.ly/3t6wexB" alt="second client" width="100px" height="100px"/>
    <img src="https://bit.ly/3WAkxN8" alt="third client" width="100px" height="100px"/>
    <hr>
    <h2>My Skills</h2>
    <ul>
      <li>HTML</li>
      <li>CSS</li>
      <li>JavaScript
        <ul>
          <li>Vuejs</li>
          <li>Reactjs</li>
          <li>Angular
            <ol start="4">
              <li>v4.0</li>
              <li>v5.0</li>
              <li>v6.0</li>
              <li>v7.0</li>
              <li>v8.0</li>
            </ol>
          </li>
          <li>Svelte</li>
        </ul>
      </li>
      <li>Python</li>
    </ul>
    </body>
  </html>



<br><br><hr><br><br>



<h5>Assignment 2</h5>
<!-- Assignment 2 -->

<!DOCTYPE html>
<html>
  <head>
    <title>Hani Mansour Profile</title>
    <meta charset="UTF-8" />
    <meta name="author" content="Hani Mansour">
    <meta name="Description" content="You can find us by typing @hani2up"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
   </head>
   <body>
    <ul>
      <li>One
        <ol type="A" start="3">
          <li>C</li>
          <li>D</li>
          <li>E</li>
        </ol>
      </li>
    </ul>
    <ul>
      <li>Two
        <ol type="I" start="3">
          <li>3</li>
          <li>4</li>
          <li>5</li>
        </ol>
      </li>
    </ul>
    <ul>
      <li>Three
        <ol type="a" start="4" reversed>
          <li>d</li>
          <li>c</li>
          <li>b</li>
        </ol>
      <!-- OR
        <ol type="a">
          <li value="4">d</li>
          <li value="3">c</li>
          <li value="2">b</li>
        </ol>
       -->
      </li>
    </ul>
    </body>
</html>



<br><br><hr><br><br>



<h5>Assignment 3</h5>
<!-- Assignment 3 -->

<!-- Use an image as link -->
<a href="https://hani2up.blogspot.com"><img src="https://bit.ly/3FKDmY0" width="100px" height="100px"></a><br><br>

<!-- Link to another section on the same page -->
<a href="#a1">Go to section 2</a><br><br>

<!-- Link to an email address -->
<a href="mailto:hani2up@gmail.com">Contact Me</a><br><br>

<!-- Link to a phone number -->
<a href="tel:+21620535126">+21620535126</a><br><br>

<!-- Link to another Page -->
<a href="test.html">Test document</a>



<br><br><br><br><hr><br><br>



<h5>Assignment 4</h5>
<!-- Assignment 4 -->

<!DOCTYPE html>
<html>
  <head>
    <title>Hani Mansour Profile</title>
    <meta charset="UTF-8" />
    <meta name="author" content="Hani Mansour">
    <meta name="Description" content="You can find us by typing @hani2up"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
   </head>
   <body>
    <dl>
      <dt>Learn Programing</dt>
      <dd>Learn Computer Science</dd>
      <dd>Learn Database</dd>
      <dt>Design</dt>
      <dd>Learn Graphics</dd>
      <dd>Learn Sketching</dd>
    </dl>
    </body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console