இடுகைகள்

HTML லேபிளைக் கொண்ட இடுகைகளைக் காட்டுகிறது

HTML | CSS Height and Width Dimensions ? Tamil Programmers

படம்
#behindthecode <!DOCTYPE html> <html> <style type="text/css">       @page { size:2.5in 2in; margin: 2cm }    </style> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Tamil Programmers

Dynamic add row in JQuery? Tamil Programmers

படம்
<!DOCTYPE html> <html lang="en"> <head>   <title>Behind The Code</title>   <meta charset="utf-8">   <meta name="viewport" content="width=device-width, initial-scale=1">   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> </head> <body> <div class="container">  <table width="100%" class="table table-bordered">    <tr>     <td> Name : Mariappan </td>      <td> <button class="add">Add </button> </td>    </tr>    <tr>     <td> Name : Mariappan </td>      ...