Wednesday, May 29, 2019

HTML5

https://www.tutorialspoint.com/html5/

https://html.spec.whatwg.org/multipage/

https://www.geeksforgeeks.org/html5-introduction/

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements/

https://hp.myway.com/mergedocsonline/

https://www.geeksforgeeks.org/html5-game-development-infinitely-scrolling-background/


<!DOCTYPE html>
<html>
    <head>
        <title>details tag</title>
        <style>
            summary {
                font-size:40px;
                color:#090;
                font-weight:bold;
            }
        </style>
    </head>
    <body>
        <details>
            <summary>GeeksforGeeks</summary>
            <p>A computer science portal for geeks</p>
            <div>It is a computer science portal where you
            can learn programming.</div>
        </details>
    </body>
</html>         


______________________________________________________________

<!DOCTYPE html>
<html>
    <head>
        <title>dialog tag</title>
        <style>
            dialog {
                color:green;
                font-size:30px;
                font-weight:bold;
                font-style:italic;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1><dialog> tag</h1>
        <dialog open>Welcome to GeeksforGeeks</dialog>
    </body>
</html




______________________________________________________________


<!DOCTYPE html>
<html>
    <head>
        <title>meter tag</title>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <p>Meter Tag:</p>
        Sachin's score: <meter value="5" min="0" max="10">5 out of 10</meter>
        <br>Laxma sxore: <meter value="0.5">50% from 100% </meter>
    </body>
</html>   


No comments:

Post a Comment

Коментар: