HTML or HyperText Markup Language is the standard markup language used to create Web pages. HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like
    1. The DOCTYPE declaration defines the document type to be HTML
    2. The text between <html> and </html> describes an HTML document
    3. The text between <head> and </head> provides information about the document
    4. The text between <title> and </title> provides a title for the document
    5. The text between <body> and </body> describes the visible page content
    6. The text between <h1> and </h1> describes a heading
    7. The text between <p> and </p> describes paragraph

    HTML5 Example:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Title of the document</title>
    </head>

    <body>
    Content of the document......
    </body>

    </html>




    New HTML5 Elements

    The most interesting new elements are:
    New semantic elements like <header>, <footer>, <article>, and <section>.
    New form controls like number, date, time, calendar, and range.
    New graphic elements: <svg> and <canvas>.

    New multimedia elements: <audio> and <video>.


    Graphic design

    Graphic design is the methodology of visual communication, and problem-solving through the use of type, space and image. The field is considered a subset of visual communication and communication design, but sometimes the term "graphic design" is used interchangeably with these due to overlapping skills involved.

0 comments:

Post a Comment

Next PostNewer Post Previous PostOlder Post Home