Untitled

 avatar
unknown
plain_text
a year ago
502 B
7
Indexable
<!DOCTYPE html>
<html>
<title>Online HTML Editor</title>

<head>
</head>

<body>
    <h1>200 numrat e pare cift</h1>
    <ul id="nr_cift"></ul>
    <script>
        function gjenero_cift() {
            var nr_cift = document.getElementById("nr_cift");
            var element = "";
            for (var i = 2; i <= 200; i = i + 2) {
                element += "<li>" + i + "</li>";
            
                }
            nr_cift.innerHTML = element;
        }
        gjenero_cift();
    </script>
Editor is loading...
Leave a Comment