Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html

full form of HTML is hyper text markuo language
Html is used for making body of website
Comment

html

Its a Language for making websites Structure:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>put tab name here</title>
    </head>
    <body>


    </body>
</html>


Comment

html

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

html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>
Comment

html

<!--What dose Html look ike?-->
<html>
  <head>
    <script>
      //this is a javascript
      console.log("hello world") //print "hello world"
      var x = 10  //varable
      var x = x + 10 //add 10 to a varable
      console.log(x) //print x
    </script>
  </head>
  <body>
    <h1>This is a headder</h1>
    <p>this is a paragraph</p>
    <p class="Text_1" id="P1">this is a paragraph with an id and a class</p>
  </body>
Comment

$ 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">
  
  	<link rel="icon" href="past here your logo path" type="image/x-icon">
  
    <title>Website title</title>
</head>
<body>
    <!-- Body -->
</body>
</html>
Comment

html

 <input type="text">  
    <input type="password">  
    <input type="radio">  
    <input type="checkbox">  
    <input type="hidden">  
    <input type="time">  
    <input type="submit">   
    <input type="reset">  
    <input type="tel">  
    <input type="search">   
    <input type="week">
    <input type="range">   
    <input type="month">   
    <input type="url">  
    <input type="button" value="click">   
    <input type="email" value="mhmd.shrydh1996@gmail.com">   
    <input type="date" value="08/05/1996">  
    <input type="number" value="199999">  
    <input type="image" placeholder="image"  style="width:30px  " >   
    
Comment

html

<!DOCTYPE html>
<html>
<body>
  <p id="demo"></p>
//JavaScript can create dynamic HTML content:
<script>
document.getElementById("demo").innerHTML = "Date : " + Date(); </script>
</body>
</html>
Comment

html

/*when you Click on these buttons it should call the function changeColor
and the function will change the color  */

    <button onclick="changeColor(this, 'red')">
      Click me to change my color.
    </button>

    <button onclick="changeColor(this, 'blue')">
        Click me to change my color.
      </button>

      <button onclick="changeColor(this, 'green')">
        Click me to change my color.
      </button>

    <script>
      function changeColor(element, color) {
        element.style.color = color;
    }
    </script>


Comment

html

<!DOCTYPE html>
<html>
<body>

<h2>JavaScript addEventListener()</h2>

<p>This example uses the addEventListener() method to add many events on the same button.</p>

<button id="myBtn">Try it</button>

<p id="demo"></p>

<script>
var x = document.getElementById("myBtn");
x.addEventListener("mouseover", myFunction);
x.addEventListener("click", mySecondFunction);
x.addEventListener("mouseout", myThirdFunction);

function myFunction() {
  document.getElementById("demo").innerHTML += "Moused over!<br>";
}

function mySecondFunction() {
  document.getElementById("demo").innerHTML += "Clicked!<br>";
}

function myThirdFunction() {
  document.getElementById("demo").innerHTML += "Moused out!<br>";
}
</script>

</body>
</html>
Comment

HTML

<html>
<body>
<h1>HTML ROCKS!!</h1>
</body>
</html>
Comment

html

<html>
  <head>
  </head>
	<body>
  <img src="example.end">
    </img>
  </body>  
  </html>
Comment

html

<body>
    <h1>Hellow</h1>
    <div class="main">
        <div class="top">
            <img src="">
        </div>
        <div class="content">
        </div>
    </div>
</body>
Comment

html

HTML = hypertext markup language 
Comment

Html

<!DOCTYPE html>
<html>
  <head>
    <title>This is a title</title>
  </head>
  <body>
    <div>
        <p>Hello world!</p>
    </div>
  </body>
</html>
Comment

html

how to take button on left side for website
Comment

html

[ Base URL: https://sowlab.tech/assignment/ ]
Comment

HTML

<canvas id="canvas" height="300" width="500">
</canvas>
Code language: HTML, XML (xml)
Comment

HTML

HTML = ? Hypertext Markeup Language
Comment

html

[ Base URL: https://sowlab.tech/assignment/ ]
Comment

HTML

HTML = Hyper Text Matkup Language
Comment

html

!<doctype html>
<html>
<head>
<button>hello.I am a button.</button>
</head>
</html>
</doctype>
Comment

html

Cannot GET /check.html
Comment

html

<!DOCTYPE html>
<html>
<head>
<title>WEB BROWERS</tile>
</head>
<body>

<h1>First title</h1>

</body>
</html>
Comment

HTML

<HTML>
<!-- Hello World in HTML -->
<HEAD>
<TITLE>Hello World!</TITLE>
</HEAD>
<BODY>
Hello World!
</BODY>
</HTML>
Comment

html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>owass admition school page</title>
</head>
<body>
    <center>WELCOME TO POPKU WARE ADMITION SCHOOL PAGE  <label for="big"></label></center>
    <form> First Name : <input type="text" name="Fname"> </form>
    <form> Second Name : <input type="text" name="Sname">  </form>
    <form> Last  Name : <input type="text" name="Lname">  </form>
    <form> index number : <input type="number" name="Lname">  </form>
    <form> Date of birth : <input type="date" name="name">  </form>
    <body style="background-color:powderblue;">
                 </a>
    </body>
    <ntp-realbox id="realbox" shown=""></ntp-realbox>
    
</body>
</html>
Comment

html

<div class="a">k</div>
Comment

HTML

HTML = Hypertext Markup laguage
Comment

html

<!doctype html>
Comment

html

<html>
  <head>
    <title>Document title</title>
  </head>
  <body>
    <p>This is a paragraph</p>
  </body>
</html>
Comment

HTML

<p style="word-spacing: 200px;"> Text with huge spacing between words </p>
//SPACE TAG INTO TWO WORD
Comment

html

<input accept="audio/*,video/*,image/*" />
Comment

Html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>App_Title</title>   
</head>
  <body>
      <header>
      </header> 
      <br />
      <footer>
      </footer>
  </body>
</html>
Comment

html

<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width">

  <title>Unique page title - My Site</title>

  <script type="module">
    document.documentElement.classList.remove('no-js');
    document.documentElement.classList.add('js');
  </script>

  <link rel="stylesheet" href="/assets/css/styles.css">
  <link rel="stylesheet" href="/assets/css/print.css" media="print">

  <meta name="description" content="Page description">
  <meta property="og:title" content="Unique page title - My Site">
  <meta property="og:description" content="Page description">
  <meta property="og:image" content="https://www.mywebsite.com/image.jpg">
  <meta property="og:image:alt" content="Image description">
  <meta property="og:locale" content="en_GB">
  <meta property="og:type" content="website">
  <meta name="twitter:card" content="summary_large_image">
  <meta property="og:url" content="https://www.mywebsite.com/page">
  <link rel="canonical" href="https://www.mywebsite.com/page">

  <link rel="icon" href="/favicon.ico">
  <link rel="icon" href="/favicon.svg" type="image/svg+xml">
  <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  <link rel="manifest" href="/my.webmanifest">
  <meta name="theme-color" content="#FF00FF">
</head>

<body>
  <!-- Content -->
  <script src="/assets/js/xy-polyfill.js" nomodule></script>
  <script src="/assets/js/script.js" type="module"></script>
</body>
</html>
Comment

HTML

HTML = Hypertext Markup laguage
Comment

Html

لن تظهر اصلا
<p class=element hidden>Welcome To The New World</p>

<p class="element" hidden>Welcome To The New World</p>
Comment

HTML

HTML = Hypertext Markup laguage
Comment

Html

HTML = HyperTextMarkupLangauge
Comment

html

lol i just hacked nasa using html
Comment

Html

WebIDL[Exposed=Window]
interface Geolocation {
  undefined getCurrentPosition (
    PositionCallback successCallback,
    optional PositionErrorCallback? errorCallback = null,
    optional PositionOptions options = {}
  );

  long watchPosition (
    PositionCallback successCallback,
    optional PositionErrorCallback? errorCallback = null,
    optional PositionOptions options = {}
  );

  undefined clearWatch (long watchId);
};

callback PositionCallback = undefined (
  GeolocationPosition position
);

callback PositionErrorCallback = undefined (
  GeolocationPositionError positionError
);
Comment

html

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <details>
      <summary>Copyright 2013-2014.</summary>
      <p>W3docs. All rights reserved.</p>
      <p>The content of the website is the property of W3Docs.com.</p>
    </details>
  </body>
</html>
Comment

html

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <details>
      <summary>Copyright 2013-2014.</summary>
      <p>W3docs. All rights reserved.</p>
      <p>The content of the website is the property of W3Docs.com.</p>
    </details>
  </body>
</html>
Comment

html

<body>
  <h1>Styles Conference</h1>
  <p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest technologies. Join us this August!</p>
</body>
Comment

html

<body>
  <h1>Styles Conference</h1>
  <p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest technologies. Join us this August!</p>
</body>
Comment

html

<div id="mapa">
  <svg xmlns="http://www.w3.org/2000/svg" width="600" height="590" viewBox="0 0 432 428">
    <path id="acre" data-name="Acre"
        fill="none" stroke="black" stroke-width="1"
        d="M 40.00,152.22
           C 40.00 ..." />
    <text x="15" y="160">AC</text>

    <path id="amazonas" data-name="Amazonas"
        fill="none" stroke="black" stroke-width="1"
        d="M 107.4 ..." />
    <text x="95" y="105">AM</text>
  </svg>
</div>
Comment

Html

<!-- chat/templates/chat/index.html -->
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Chat Rooms</title>
</head>
<body>
    What chat room would you like to enter?<br>
    <input id="room-name-input" type="text" size="100"><br>
    <input id="room-name-submit" type="button" value="Enter">

    <script>
        document.querySelector('#room-name-input').focus();
        document.querySelector('#room-name-input').onkeyup = function(e) {
            if (e.keyCode === 13) {  // enter, return
                document.querySelector('#room-name-submit').click();
            }
        };

        document.querySelector('#room-name-submit').onclick = function(e) {
            var roomName = document.querySelector('#room-name-input').value;
            window.location.pathname = '/chat/' + roomName + '/';
        };
    </script>
</body>
</html>
Comment

html

<!DOCTYPE html>
<html lang="en">


<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width","initial-scale=1.0">

<title>Login</title>

</head>

<body>


</body>

</html>
Comment

html

<!DOCTYPE html>
<html lang="en">
  <head>
    <title> My HTML Cheat Sheet </title>
  </head>
  <body></body>
</html>
Comment

html

root@kali:~# aircrack-ng all-ivs.ivs
                                   Aircrack-ng 1.4


                   [00:00:00] Tested 1514 keys (got 30566 IVs)

   KB    depth   byte(vote)
    0    0/  9   1F(39680) 4E(38400) 14(37376) 5C(37376) 9D(37376)
    1    7/  9   64(36608) 3E(36352) 34(36096) 46(36096) BA(36096)
    2    0/  1   1F(46592) 6E(38400) 81(37376) 79(36864) AD(36864)
    3    0/  3   1F(40960) 15(38656) 7B(38400) BB(37888) 5C(37632)
    4    0/  7   1F(39168) 23(38144) 97(37120) 59(36608) 13(36352)

                         KEY FOUND! [ 1F:1F:1F:1F:1F ]
    Decrypted correctly: 100%
Comment

HTML

HTML = Hypertext Markup laguage
Comment

html

root@kali:~# aircrack-ng all-ivs.ivs
                                   Aircrack-ng 1.4


                   [00:00:00] Tested 1514 keys (got 30566 IVs)

   KB    depth   byte(vote)
    0    0/  9   1F(39680) 4E(38400) 14(37376) 5C(37376) 9D(37376)
    1    7/  9   64(36608) 3E(36352) 34(36096) 46(36096) BA(36096)
    2    0/  1   1F(46592) 6E(38400) 81(37376) 79(36864) AD(36864)
    3    0/  3   1F(40960) 15(38656) 7B(38400) BB(37888) 5C(37632)
    4    0/  7   1F(39168) 23(38144) 97(37120) 59(36608) 13(36352)

                         KEY FOUND! [ 1F:1F:1F:1F:1F ]
    Decrypted correctly: 100%
Comment

html

<html> ... </html>
Comment

html

<html>
<head>head</head>
Comment

html

HTML = Hyper Text Markup Language
Comment

html

<!DOCTYPE html>
<html lang="en">
<head>
<title>QR-Code Generator</title>
<style>
  * {
      margin: 0px; 
      padding: 0px;
      font-family: monospace, Arial, sans-serif;
    }
  h1 {
      text-align: center; 
      text-shadow: 2px 2px 0px rgba(255,255,255,.7), 5px 7px 0px rgba(0, 0, 0, 0.1);  font-size:50px; margin-top:40px; color:#fff; 
    }
    input[type=text] {
        width: 90%;
        padding: 12px 20px;
        margin: 8px 26px;
        display: inline-block;
        border: 1px solid #ccc;
        box-sizing: border-box;
        font-size:16px;
    }
    button {
        background-color: #4CAF50;
        color: white;
        padding: 14px 20px;
        margin: 8px 26px;
        border: none;
        cursor: pointer;
        width: 90%;
        font-size:20px;
    }
    button:hover {
        opacity: 0.8;
    }
</style>
<!--Jquery 3.2.1-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body background="../background1.png">
<h1>QR-Code Generator</h1>
<div id="form-wrapper" style="width:46%; float:left; border:5px solid rgba(255,255,255,0.6); margin-top:20px; padding:10px">
    <form id="generator">     
        <label for="codeSize" style="font-size:20px; margin-right:20px; color:#fff;">Select QR Size:</label>
        <select id="codeSize" name="codeSize" style="width:260px; height:40px; ">
            <option value="75">Mini</option>
            <option value="155">Small</option>
            <option value="186">Medium</option>
            <option value="248" selected="selected">Large</option>
            <option value="300">XL</option>
            <option value="450">XXL</option>
        </select>
        <input type="text" onclick="myFunction()" id="codeData" name="codeData" size="50" placeholder="Enter a url or text" style="margin-top:20px" autocomplete="off"/ >
        <br>
        <button id="generate">generate</button>
    </form>
    <div id="alert" style="height:20px; text-align:center; margin:10px auto"></div>
</div>

  <div style="float:right;">
   <div id="image" style="margin:auto">Image will show here</div>
   <div id="link" style="margin-top:10px; text-align:center"></div>
  </div>
  
  <div id="code" style="float:left; width:100%; height:20px; text-align:center; margin-top:10px"></div>
<script>
function myFunction() {
     document.getElementById("alert").innerHTML = "";
  }
$("#generate").on("click", function () {
var data = $("#codeData").val();
var size = $("#codeSize").val();
if(data == "") {
    $("#alert").append("<p style='color:#fff;font-size:20px'>Please Enter A Url Or Text</p>"); // If Input Is Blank
    return false;
} else {
    if( $("#image").is(':empty')) {
    
    //QR Code Image
      $("#image").append("<img src='http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "' alt='qr' />");
    
    //This Provide An Image Download Link
      $("#link").append("<a style='color:#fff;' href='http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "'>Download QR Code</a>");
    
    //This Provide the Image Link Path In Text
      $("#code").append("<p style='color:#fff;'><strong>Image Link:</strong> http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "</p>");
      return false;
} else {
      $("#image").html("");
      $("#link").html("");
      $("#code").html("");
    
      //QR Code Image
      $("#image").append("<img src='http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "' alt='qr' />");
    
    //This Provide An Image Download Link
      $("#link").append("<a style='color:#fff;' href='http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "'>Download QR Code</a>");
    
    //This Provide the Image Link Path In Text
      $("#code").append("<p style='color:#fff;'><strong>Image Link:</strong> http://chart.apis.google.com/chart?cht=qr&chl=" + data + "&chs=" + size + "</p>");
      return false;
    }
  }
});
</script>
</body>
</html>
Comment

Html

title  <--global-->
href  not globale
src non globale
hidden globale
charset non globale
class globale
id globale
type globale
Comment

html

<html>
<title>hello</title>
Comment

Html

<p class="element">Welcome To The New World</p>
<p class='element'>Welcome To The New World</p>
<p class=element>Welcome To The New World</p>
لا
Comment

Html

<!Doctype html>
""

<!-- Quirks mode -->
""

<!-- نعم -->
""

<!-- لا -->
""

<!-- سمك العنوان -->
""
Comment

HTML

Question 01 => No
Question 02 => Yes
Question 03 => No
Question 04 => No
Comment

Html

ستظهر بنفس الشكل
<p>Hello World</p>

<p>
Hello World
</p>

<p>
Hello
World
</p>

<p>
Hello


World
</p>
Comment

html

<!DOCTYPE html>
<html>
  <head>
    <h3>The JS magicest script</h3>
    <textarea>
      var paragraph = document.getElementById("p");

paragraph.textContent += "hello";
    </textarea>
Comment

html

<!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">
    <link rel="stylesheet"href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"> 
    <link rel="stylesheet" href="form.css">
    <title>formulaire</title>
</head>

<body>
    <form>
        <h1>Contactez Nous</h1>
       
        <div class="corps-formulaire">
            <div class="gauche">
                <div class="groupe"><label for="nom">Nom</label>
                    <input type="text" name="nom" placeholder="Nom">
                    <i class="fas fa-user"></i>
                </div>

                <div class="groupe"><label for="email">Email</label>
                    <input type="email" name="email" placeholder="Email">
                    <i class="fas fa-envelope"></i>
                </div>

                <div class="groupe"><label for="motDePasse">Mot De Passe </label>
                    <input type="text" name="motDePasse" placeholder="Entrée Votre Mot De Passe">
                </div>

                <div class="groupe"><label for="tel">Téléphone</label>
                    <input type="number" name="telephone" placeholder="Téléphone">
                    <i class="fas fa-mobile-alt"></i>
                </div>

                <div class="groupe"> <label for="entreprise">Nom De L'entreprise </label>
                    <input type="text" name="entreprise" placeholder="Nom De L'entreprise">
                    <i class="fas fa-building"></i>
                </div>

            </div>
                 <div class="droite">
                     <div class="groupe">
                        <label for="Messages">Messages</label>
                        <textarea >Saisissez ici....</textarea>
                     </div>
                 </div>
        </div>
        <div class="pied-formulaire" align="center">
            <button id="btn" type="submit">Envoyer Votre Messages</button>

        </div>



    </form>
</body>

</html>
Comment

html

<html>
  <head>
    <title>Book Store</title>
  </head>
  <body>
    This Is My Book Store, Welcome
  </body>
</html>
Comment

html

<h1>PORCO DIO</h1>
Comment

html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>"The Basic Structure of an HTML code"</title>
  </head>
  <body>
    "The body of the page goes here"
  </body>
</html>
Comment

html

                                                Read the instructions provided for every question properly before attempting the answer.Click Finish only after completion of the Exam.
                                                    
Comment

html

Ready to Hack NASA ;)
Comment

html

<html>
  <head>
    <meta charset="UTF-8" />
    <title>Book Store</title>
    <meta name="description" content="This Is Our Book Store" />
    <style></style>
    <script></script>
    <link rel="stylesheet" href="">
  </head>
  <body>
    This Is My Book Store, Welcome
  </body>
</htm>
Comment

Html

	   <meta name ="description" content="This Is Description For My First Page "/>
        <!-- This meta is used to show the descriptio of the page in the search results  -->
	   <meta charset="UTF-8"/>
	   <!-- Used to allow multiple language content in the web page   -->
	   <meta name="keywords" content ="HTML CSS JavaScript" />
	   <!-- Used to include the web page in the search result depending on these keywords  -->
	   <meta name ="viewport" content="width=device-width ,intial -scale =1.0"/>
	   <!-- Used to arrange content within the page  -->
	   <meta name ="author" content ="Asim Mohammed"/>
	   <!-- Used to show the web page depending on the author of the page  -->
Comment

Html

Question 01 => Yes Or No
Question 02 => Yes Or No
Question 03 => Yes Or No
Question 04 => Yes Or No
Comment

html

<!DOCTYPE html>
<html>
<head>
<title>		</title>
</head>
<body>

</body>
</html>
Comment

html

HTML: HYPER TEXT MARK UP LANGUAGE:
To understand it in simple,
HTML is a language that makes the basic layout for a website and is the 
blueprint.
It will make the basic function that make up a page.
An example of a mostly HTML-only page is WIKIPEDIA.
Comment

html

The HyperText Markup Language, or HTML is the standard markup language for documents designed to be displayed in a web browser. ... HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items.
Comment

html

<html>
  <p>Hello world</p>
</html>
Comment

html

fgfgdg
Comment

HTML

<?php
for ($x = 1; $x < 10; $x++)
    for ($y = 1; $y < 5; $y++)
        print "Hello";
?>
Comment

HTML

html sucks dont learn. unless you love making websites
Comment

html

www.parsonsitsolutions.com
Comment

html

CODE STYLE:
Default
Python
C++
ASP.net
Nmap
CUSTOM TXT


Comment

html

HTML is not a programming language!!!! It is a Hypertext Markup Language
Comment

html

Very simple language
Comment

html

Subscribe to Dhiroxy Playz and find out
Comment

html

Search egg and give it a like! Make it the most liked thing on grepper.
Comment

html

Use repl.it or glitch or codepen for free hosting
Comment

html

<h1>PORCO DIO</h1>
<select>
  	<option value="si">Si</option>
  	<option value="no">No</option>
</select>
  
Comment

html

<link rel="stylesheet" href="styles/main.css">
Comment

html

<span class="item">
  
</span>
Comment

Html

<div id="demo" class="big" dir="ltr" lang="en" 
style="color: red;" tabindex="0" title="Tooltip" 
contenteditable="true" spellcheck="true" 
data-htmlcheat="99">Hello World!</div>
Comment

html

<html>
<head>
<title>registration form</title>
</head>

<h2 ALIGN="CENTER">Registration form</h2>

<form action="Welcome.html" method="post">
<table border="0" align="center">
<tbody>

<tr>
<td><label for="id">Id: </label></td>
<td><input id="id" maxlength="50" name="name" type="text" /></td>
</tr>

<tr>
<td><label for="name">Name: </label></td>
<td><input id="name" maxlength="50" name="name" type="text" /></td>
</tr>

<tr>
<td><label for="course">Course: </label></td>
<td><input id="course" maxlength="50" name="course" type="text" /></td>
</tr>

<tr>
<td><label for="branch">Branch: </label></td>
<td><input id="branch" maxlength="50" name="branch" type="text" /></td>
</tr>

<tr>
<td><label for="rolln0">Rollno: </label></td>
<td><input id="rollno" maxlength="50" name="rollno" type="text" /></td>
</tr>

<tr>
<td><label for="email">Email_Address:</label></td>
<td><input id="email" maxlength="50" name="email" type="text" /></td>
</tr>

<tr>
<td><label for="username">User_Name:</label></td>
<td><input id="username" maxlength="50" name="username" type="text" /></td>
</tr>

<tr>
<td><label for="aboutus">About Us:</label></td>
<td valign="middle" align="center"><textarea></textarea></td>
</tr>

<tr>
<td><label for="password">Password:</label></td>
<td><input id="password" maxlength="50" name="password"
type="password" /></td>
</tr>

<tr>
<td align="right"><input name="Submit" type="Submit" value="Add" /></td>
</tr>

</tbody>
</table>
</form>
</html>
Comment

html

<div>hello element</div>
Comment

html

HTML = web disigner
Comment

html

Cannot GET /H%20%5E&%20W/hw.html
Comment

HTML

<p>Here is a paragraph!</p>
Comment

html

(space)bitcoind importprivkey 5yourveryveryveryverylongprivatekeystring" "label-here" rescan=false
Comment

HTML

HTML = Hyper Text Marktup Language
Comment

html

<span class="badge rounded-pill bg-primary">Primary</span>
<span class="badge rounded-pill bg-secondary"><a href="#">Secondary</a></span>
<span class="badge rounded-pill bg-success">Success</span>
<span class="badge rounded-pill bg-danger">Danger</span>
<span class="badge rounded-pill bg-warning text-dark">Warning</span>
<span class="badge rounded-pill bg-info text-dark">Info</span>
<span class="badge rounded-pill bg-light text-dark">Light</span>
<span class="badge rounded-pill bg-dark">Dark</span>
Comment

html

html is a very easy language to learn
Comment

Html

<div></div> 
<h1></h1>
Comment

html

<!html (hypertext marckup language) is a marckup language used to make most websites>
Comment

html

Cannot GET /hemsida.html
Comment

html

HTML = ? hyper text markup language
Comment

html

My cat is very grumpy
HTML is cool!
Comment

HTML


This is my first web page
Comment

html

html<input type="text" /><br />
<input type="password" />
Comment

Html

<html>
  <head>
    <title>Meet</title>
  </head>
  <body>
    Meet Gaming
  </body>
</html>
Comment

html

Question 01 => Yes Or No answer no
Question 02 => Yes Or No answer  yes
Question 03 => Yes Or No answer no 
Question 04 => Yes Or No  answer no 
Comment

html

HTML is a mark up language used for coding websites
Comment

html

HTML is a markup language used for coding websites
Comment

PREVIOUS NEXT
Code Example
Html :: how to make email required in html 
Html :: ConfirmPassword 
Html :: html audio tag 
Html :: vue emit 
Html :: style upload button vue 
Html :: thumbnail html 
Html :: html get user screen resolution 
Html :: Simple example of using inline javascript in html 
Html :: jquery unescape html 
Html :: html select component 
Html :: nav bar activate in jinja 
Html :: html include html page 
Html :: twig lower 
Html :: how to loop in html 
Html :: script attach in html 
Html :: Tailwind CSS timeline 
Html :: auto click script 
Html :: html input checkbox checked 
Html :: html images @2x 
Html :: how to choose your html website favicon 
Html :: how to use flaticon in html 
Html :: html gallery 
Html :: font jrxml 
Html :: okaycms not working after installation 
Html :: tag field 
Html :: how to append a variable to html 
Html :: how to make a svg of full width of a webpage html 
Html :: mozilla date input 
Html :: like disLike 
Html :: metabase 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =