Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

what is html 5

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Here is your title</title>
</head>
<body>
  <!-- HTML5 is the latest standard of Hypertext Markup Language, the code that describes the structure and presentation of web pages.
    It's made up of three codes: HTML, which keeps the structure; CSS, which affects the presentation; and JavaScript, which creates interactive effects within web browsers. -->
    <!-- this is the main section .here you write your whole thing with tag -->
    <!-- example of some tag -->
    <h1>fast big hadding</h1>
    <h2>2nd big hadding</h2>
    <h3>3rd bid hadding</h3>
    <h4></h4>
    <h5></h5>
    <h6></h6>
    <p>pragraph</p>
    <img src="" alt="">
    <a href=""></a>
    <ul>
        <li></li>
    </ul>
<!-- etc -->
</body>
</html>
 
PREVIOUS NEXT
Tagged: #html
ADD COMMENT
Topic
Name
8+7 =