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="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Site Başlığı</title>
</head>
<body>
  <ul class="liste">
    <li id="walterwhite">Walter White</li>
    <li class="alternate">Jesse Pinkman</li>
    <li>Skyler White</li>
    <li class="alternate">Hank Schrader</li>
    <li>Gustavo Fring</l>
  </ul>

  <input type="text" id="veri">
<button id="ekle">Listeye Öğe Ekle</button>

  </body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                var one = document.getElementById("walterwhite");

var two  = document.getElementsByClassName("alternate");

for (var i = 0; i < two.length; i++) { 
     two[i].style.color  = "red"; 
}

var liste = document.querySelector("ul");

var urun = document.querySelector("#veri"); 
var ekle = document.querySelector("#ekle");

ekle.addEventListener("click",function(){
  // createElement ile yeni bir listItem (li) oluşturuyoruz
  var li=document.createElement("li"); 
  
  // Input ile gelen veriyi "li" içerisine metin olarak giriyoruz.
  li.textContent=veri.value; 
  
  // appendChild ile oluşturduğumuz elementi "liste" isimli değişkenimizin içerisine ekliyoruz.
  liste.appendChild(li);
              
  // Veri inputu içerisindeki metni siliyoruz.
  veri.value = "";
});
              
            
!
999px

Console