Activity#18: Research Html

·

2 min read

Basic HTML Elements:

    • In Headings is a subtitles that you want to display in your webpage it includes the different headings(<h1></h1>, <h2><h/2>, <h3></h3>, <h4></h4>, <h5></h5>, <h6></h6>)

      1. The <p> elements define as Paragraphs. In webpage you can write a paragraph to improve its appearance and create more audience impact.
        • 3. Lists:

          * Unordered List: Use <ul> for bullet points.

          1. * Ordered List: Use <ol> for numbered lists.

    1. HTML tables allow web developers to arrange data into rows and columns.

      • 5. Form- An HTML form is used to collect user input. The user input is most often sent to a server for processing.

  • 6. Div- The <div> tag defines a division or a section in an HTML document.

  • 7. Images - Images can improve the appearance and design of website

  • 8. canvas- The Canvas API allows JavaScript to draw graphics on the canvas.

    The Canvas API can draw shapes, lines, curves, boxes, text, and images, with colors, rotations, transparencies, and other pixel manipulations.

  • 9. Video

  • 10 .YouTube

    The YouTube link that connected to the video

    1. drag and drop- In HTML, drag and drop refers to the ability to move an object (such as an element) by "grabbing" it with the mouse, dragging it to a new location, and then releasing it to "drop" it

  1. Semantic HTML:

    • In this page I am using a semantic html. Semantic HTML elements make it easier to update and maintain your code, since the structure of the page is clearly defined. I just put a 3 link for nav bar (Home, about , contact that doesn’t work yet) then a title, next is a subtitle then last is a paragraph and a little information for my context, lastly is footer.

References for some code: https://www.w3schools.com/