10 new html elements

        1.  The first thing I learned about is canvas. Canvas uses the <canvas> tag to define itself. Using canvas you can make a little box where you can draw a shape or color inside of it like the image below.

          Your browser does not support the HTML canvas tag
        2. The second thing I found is buttons. Buttons are used to trigger an event when you click it.
        3. Footers use the <footer> tag to define the ending of a website. the footer usually contains the author’s name, copyright date, and links to related documents.
        4. Meta. The meta is used to define the metadata of an HTML document. Meta uses the tag <meta> and is always in the header.
        5. Div. The <div> tag defines a section of an HTML document. The tag is used as a basket that holds HTML elements after which is then styled with CSS or manipulated with JavaScript.
        6. Iframes. Iframes are used to put a text, image, video, or HTML page and show it into the page. The Iframe tag is <iframe>
        7. Script. Script is a way to implement JavaScript into html. The script tag is <script> and is really important and is used in a lot of features like variables, functions, and more. Here is an example of code.<button type=”button” onclick=”myFunction()”>Click Me!</button><p id=”demo”>This is a demonstration.</p><script>
          function myFunction() {
          document.getElementById(“demo”).innerHTML = “Hello JavaScript!”;
          }
          </script>
        8. Id. Id is used to specify a unique id for an HTML document. A note to remember is you can not have two Ids with the same value. An example of Id code is: <a href=”#C4″>Jump to Beginning </a>   Jump to Beginning
        9. Form. Form has multiple features and it is usually used to recorded input data. One example of this is input.

           
        10. Language.  Using Html you can change the language of the whole document or just a paragraph using <html lang=”en-US”>. You can change the language by changing the first and last two letters in the tag.

Leave a Reply

Your email address will not be published. Required fields are marked *