Search
 
SCRIPT & CODE EXAMPLE
 

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>
Comment

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 site title</title>
   </head>
   <body>
      <h1>Hello World!</h1>
   </body>
</html>
Comment

html:5

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
</head>
<body>
    
</body>
</html>
Comment

html 5

Idk if this works in other editors but in VScode, type ! tab and it should automatically paste in all the starting info
Comment

html 5

<img src="/demo.jpg" alt="description" height="48" width="100" />
Comment

html 5

<a href="mailto:me@ruwix.com?Subject=Hi%20mate" target="_top">Send Mail</a>
Comment

PREVIOUS NEXT
Code Example
Html :: jinja mark text as safe 
Html :: ol list 
Html :: see line from table html 
Html :: how to protect + embed google drive video html5 
Html :: html not displaying 
Html :: input width autosize 
Html :: meta name viewport 
Html :: input cursor color 
Html :: jumbotron bootstrap 
Html :: how to add ads on html 
Html :: form multipart/form-data 
Html :: How can I include python script in a HTML file? 
Html :: remove underline from a tag 
Html :: twig check variables type 
Html :: ionic ngfor object 
Html :: how to write python in html 
Html :: align buttons next to each other bootstrap 
Html :: html color names 
Html :: html color maroon hex 
Html :: add delay to hrefs 
Html :: ASP.NET MVC Two file upload, different destinations 
Html :: default link color in html 
Html :: img src data base64 
Html :: html cursief 
Html :: floating button html 
Html :: html multiplication 
Html :: fa fa users-class 
Html :: html bold text 
Html :: how to show only play button in html audio controls 
Html :: javascript remove the current tr with click 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =