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

html5

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- ADD CSS HERE -->

    <title>Hello, world!</title>
  </head>
  <body>
    <h1>Hello, world!</h1>

	<!-- ADD JAVASCRIPT HERE-->
  </body>
</html>
Comment

html5

<!DOCTYPE html> 

<html>  
   <head> 
      <meta charset = "utf-8"> 
      <title>...</title> 
   </head> 
  
   <body> 
      <header>...</header> 
      <nav>...</nav> 
      
      <article> 
         <section> 
            ... 
         </section> 
      </article> 
      <aside>...</aside> 
      
      <footer>...</footer> 
   </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

html5

HTML5 is the 5th version of HTML and it also is a markup language. 
What is coded in HTML shows up on screen
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

html5

<!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>Document</title>
    </head>
    <body>
    </body>
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: ion-row scrolly 
Html :: website 
Html :: Basic Boilerplate 
Html :: dropdown content left 
Html :: balzor onchange 
Html :: contact form html code 
Html :: open link in new window, not tab 
Html :: open link as a number 
Html :: v-progress-circular 
Html :: pgadmin erd tool existing database 
Html :: how to add an html anchor 
Html :: add subject to mailto 
Html :: form tag radio 
Html :: membuat footer html 
Html :: host images for free html 
Html :: html icon animation 
Html :: how to include the trademark symbol in html 
Html :: meta property="og:description" 
Html :: how to shift div to right 
Html :: range input html 
Html :: html single quote code 
Html :: actionlink image mvc 
Html :: drop down using bootstrap 
Html :: html download file from directory 
Html :: boostrap input 
Html :: create a container in html 
Html :: how to increase font size in html 
Html :: mvc pass model to partial view 
Html :: select country dropdown with flag 
Html :: clipboarddata.getdata html 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =