DEV Community

Haisam
Haisam

Posted on • Edited on

ordered lists have a start attribute:

Image description

Remember, the actual content and structure of your "index.html" file will vary based on the specific requirements and design of your website.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <ol start="10">
        <li>HTML</li>
        <li>CSS</li>
        <li>JS</li>
        <li>PY</li>
        <li>PHP</li>
    </ol>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)