project1-part1

Article Page for Learn Basics of HTML5 , CSS3 and JavaScript

by MahmoudSaeedNST

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>My Website</title>
        <meta charset="utf-8" />
        <style>
            body {
                background-color: #f0f0f0;
                padding: 0px;
                margin: 0px;
            }
            div {
                background-color: white;
                width: 600px;
                padding: 50px;
                margin: 80px auto;
                
            }
            #btn {
                background-color: aquamarine;
                padding: 5px;
                margin: 10px;
                display: block;
                border-radius: 10px;
            }
            #media {
                display: none;
            }
            
        </style>
    </head>
    <body>
        <div>
            <h1> This is My Article </h1>
            <p>this Article for my previous Youtube video tutorial about HTML5</p>
            <button id="btn">
                <b>
                    Show media
                </b>
                </button>
                <embed id="media" src="https://www.youtube.com/embed/Sns3FnH8ghE" width="500" height="315"/>
        </div>
        <script>
            document.getElementById("btn").onclick = function (){
                document.getElementById("media").style.display = "block";
            }
        </script>
    </body>
</html>