-->

ABOUT US

Our development agency is committed to providing you the best service.

OUR TEAM

The awesome people behind our brand ... and their life motto.

  • Kumar Atul Jaiswal

    Ethical Hacker

    Hacking is a Speed of Innovation And Technology with Romance.

  • Kumar Atul Jaiswal

    CEO Of Hacking Truth

    Loopholes are every major Security,Just need to Understand it well.

  • Kumar Atul Jaiswal

    Web Developer

    Techonology is the best way to Change Everything, like Mindset Goal.

OUR SKILLS

We pride ourselves with strong, flexible and top notch skills.

Marketing

Development 90%
Design 80%
Marketing 70%

Websites

Development 90%
Design 80%
Marketing 70%

PR

Development 90%
Design 80%
Marketing 70%

ACHIEVEMENTS

We help our clients integrate, analyze, and use their data to improve their business.

150

GREAT PROJECTS

300

HAPPY CLIENTS

650

COFFEES DRUNK

1568

FACEBOOK LIKES

STRATEGY & CREATIVITY

Phasellus iaculis dolor nec urna nullam. Vivamus mattis blandit porttitor nullam.

PORTFOLIO

We pride ourselves on bringing a fresh perspective and effective marketing to each project.

Showing posts with label Web Developing HTML. Show all posts
Showing posts with label Web Developing HTML. Show all posts
  • HTML5 Ins Tag





    HTML5  <Ins>  Tag


    The <ins> Tag define a text that has been inserted into a document. It is often paired with a <del> element which identifies deleted text replaced by the text contained in the <ins> element.




    HTML5 <del> Tag 











    Display 

    Inline



    Usage 

    Semantic/Textual




    Example 


    <!DOCTYPE html>
    <html>
    <head>
    <title> HTML5  Del  Tag </title>
    </head>

    <body>

    <p>Tickets for the Train are <del>$50</del> <ins>$10</ins>.</p>

    </body>
    </html>



    Result 

    Tickets for the Train are   $50   $10.







    Video on this Topic :-  Soon


  • HTML Table with Inline Internal & External

    Kumar Atul Jaiswal
    HTML Table with Inline Internal & External




    HTML Table 




    An HTML Table is define with the   <table>   Tag.


    • Each table row is deifined with the   <tr>  tag.
    • A table header is defined with the   <th>   tag.
    • A table data.cell is defined with the   <td>   tag.



             By default Table headings are bold and centered.





      Kumar Atul Jaiswal
      Row and Column





      Example



      <!DOCTYPE html>
      <html>
      <body>


      <h2>HTML Table</h2>



      <table style="width:100%">
        <tr>
          <th>Firstname</th>
          <th>Lastname</th> 
          <th>Age</th>
        </tr>


        <tr>
          <td>Kumar Atul</td>
          <td> jaiswal</td>
          <td>19</td>
        </tr>


        <tr>
          <td>Hacker</td>
          <td>BoY</td>
          <td>18</td>
        </tr>


        <tr>
          <td>Naam to</td>
          <td>suna hoga</td>
          <td>17</td>
        </tr>
      </table>


      </body>

      </html>




      Result






      Note: The <td> elements are the data containers of the table.

      They can contain all sorts of HTML elements; text, images, lists, other tables, etc.







      Adding a border 

      If you do not specify a border for the table, it will be displayed without borders.


      A border is set using the CSS border property:



      table, th, td { 
        border: 1px solid black;

       } 


      Example of Adding Internal CSS


      <!DOCTYPE html>
      <html>
      <head>

      <style>

      table, th, td {
        border: 1px solid black;
      }

      </style>

      </head>
      <body>

      <table style="width:100%">
        <tr>
       <th>Firstname</th>
          <th>Lastname</th> 
          <th>Age</th>
        </tr>
        
        
        <tr>
          <td>Kumar Atul</td>
          <td> jaiswal</td>
          <td>19</td>
        </tr>
        
        
        <tr>
          <td>Hacker</td>
          <td>BoY</td>
          <td>18</td>
        </tr>
        
        
        <tr>
          <td>Naam to</td>
          <td>suna hi hoga</td>
          <td>17</td>
        </tr>

      </table>

      </body>
      </html>




      Result










      Example of Adding Inline CSS




      <!DOCTYPE html>
      <html>
      <head>


      </head>
      <body>

      <table style="width:100%">
        <tr>
          <th style="  border: 1px solid black;"  >Firstname</th>
          <th style="  border: 1px solid black;" >Lastname</th> 
          <th style="  border: 1px solid black;">Age</th>
        </tr>
        
        
        <tr>
          <td style="  border: 1px solid black;">Kumar Atul</td>
          <td style="  border: 1px solid black;"> jaiswal</td>
          <td style="  border: 1px solid black;">19</td>
        </tr>
        
        
        <tr>
          <td style="  border: 1px solid black;">Hacker</td>
          <td style="  border: 1px solid black;">BoY</td>
          <td style="  border: 1px solid black;">18</td>
        </tr>
        
        
        <tr>
          <td style="  border: 1px solid black;">Naam to</td>
          <td style="  border: 1px solid black;">suna hoga</td>
          <td style="  border: 1px solid black;">17</td>
        </tr>

      </table>

      </body>
      </html>






      Result


















      Example of Adding External CSS






      <!DOCTYPE html>
      <html>

      <head>
      <link rel="stylesheet" type="text/css" href="mystyle.css">

      </head>
      <body>


      <p>Use the external CSS File to add a border to the table.</p>



      <table style="width:100%">
        <tr>
          <th>Firstname</th>
          <th>Lastname</th> 
          <th>Age</th>
        </tr>
        <tr>
          <td>Kumar Atul</td>
          <td> jaiswal</td>
          <td>19</td>
        </tr>
        <tr>
          <td>Hacker</td>
          <td>BoY</td>
          <td>18</td>
        </tr>
        <tr>
          <td>Naam to</td>
          <td>suna hoga</td>
          <td>17</td>
        </tr>
      </table>


      </body>
      </html>



      Result












      otherwise if you do not want to use of CSS Internal file, you can use of Inline CSS

      Internal  CSS


      internal Css
      Internal  CSS


      Inline CSS


      Inline CSS
      Inline CSS






      External CSS



      External CSS
      External CSS












      Video on this Topic :- Coming Soon
                    

    • HTML Comments

      Kumar Atul Jaiswal
      HTML Comments


      HTML Comments 

      An HTML comment begins with   <!-- and the comment closes with --> .  HTML comments are visible to anyone that views the page source code, but are not rendered when the HTML document is rendered by a browser.






      Display 

      Inline






      Syntax

      You can add Comments to your HTML source by using the following syntax :


      <!--    Write your comments here    -->




      Example 


      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML Comments </title></head>

      <body>


      <p> You will be able to see the text.</p>


      <!-- You will not be able to see the text.  -->

       You can even comment out things in <!-- the middle of --> a sentence.

       <!-- Or you can comment out a large number of lines. -->


      </body>
      </html>



      Result




      Kumar Atul Jaiswal




      Note: Comments are not displayed by the browser, but they can help document

      your HTML source code.



      Video on This Topic :- 


                     




    • HTML Superscript Tag


      Kumar Atul Jaiswal
      HTML Superscript Tag


      HTML Superscript Tag




      The <sup> tag defines superscript text. For adding a superscript text in a html file, tag can be used.  Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font. Superscript text can be used for footnotes, like WWW. Tip: Use the <sub> tag to define subscript text.








      Display

      Inline







      Example



      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML5  Del  Tag </title>
      </head>

      <body>


      <p>2 <sup>4</sup>=16</p> 
      <p>X <sup>4</sup>+ Y<sup>6</sup></p> 
      <p>9<sup>th</sup> of september</p> 


      </body>
      </html>



      Result 










      Video on this Topic :- 


                






















    • HTML sub Tag

      Kumar Atul Jaiswal
      Subscripted Tag


      HTML5 <sub> Tag

      sub means Subscripted Tag. The <sub> tag defines subscript text. Subscript text appears half a character below the normal line, and is sometimes rendered in a smaller font. Subscript text can be used for chemical formulas, like H2O. Tip: Use the <sup> tag to define superscripted text.Subscript text can be used for chemical formulas, like H2O to be written as H2O.





      Display

      Inline










      Example


      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML5  Del  Tag </title>
      </head>

      <body>

      <p> Chemical formula of water is H<sub>2</sub>O</p> 
      <p>T<sub>i+2</sub>= T<sub>i</sub> + T<sub>i+1</sub></p> 



      </body>
      </html>



      Result 





      Video on this Topic :- Soon

                      





    • HTML5 del tag









      HTML5   <del>   Tag


      whats does  <del>  HTML  tag do ?


      The <del> tag is used to identify text that has been deleted from a document but retained to
      show the history of modifications made to the document. Pair a <del> element with an <ins>

      element to identify the inserted text that replaced the deleted text.



      Display  

      Inline



      Usage

      Textual



      Example


      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML5  Del  Tag </title>
      </head>

      <body>


      <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHdroYA-3qo1Yb0eleJYFqzFIAm-hwLNbHUlNssd_jchxOCm4fpZ0k-Nder3GVJEnsyv1LE2o5IKvz2w9bnRU8_X-W0CclnfBKacvaPrhowMgnNnSYuxZmt0kCNru6YfSMSydyodZ64B2C/s1600/20180205_123010+1.png" width="50%" height="auto"   alt="" />

      <p>This is <del>Unknown Person</del> kumar Atul Jaiswal.</p>

      </body>
      </html>






      Result

                                                                This is Unknown Person kumar Atul Jaiswal.
         




      Video on this Topic :-    



    • HTML5 mark tag




         Mark     Tag  in HTML 5

      The <mark> tag was introduced in HTML 5. The HTML <mark> tag is used for indicating text
      as marked or highlighted for reference purposes, due to its relevance in another context.
      The <mark> tag is supported in all major browsers. Use the <mark> tag if you want to highlight
      parts of your text. We can mark the text using many properties from global attributes of html5
      e.g. by changing font ,background color ,font color etc. This tag must have opening and closing
      <mark> tag.





        Syntax  


      The syntax of mark tag is as :

      <mark> ..............</mark>




        Example  



      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML mark Tag </title>
      </head>

      <body>

      </body>
      </html>



        Result  


      Do not forget  subscribe  to our YouTube channel.




       Attributes 


      HTML tags can contain one or more attributes. Attributes are added to a tag to provide 
      the browser with more information about how the tag should appear or behave. Attributes 
      consist of a name and a value separated by an equals (=) sign, with the value surrounded 
      by double quotes.

      There are 3 kinds of attributes that you can add to your HTML tags: Element-specific, 

      global, and event handler content attributes. The attributes that you can add to this tag are listed below.


      1. Element-Specific Attributes
      2. Global Attributes






         Have a Nice Stay Here    :)  




















    • HTML5 small tag





       Small Tag in HTML5 


      Now, at this time i realise how to Write a code in smaller Text. so, How? ....so, How?...
      and suddenly i remember a  small tag  <small>  who's is used in HTML5. so, my problem is solve but how is it possible for you? so, in this tutorial i will tell about    small Tag <small  which is used  in HTML5.



      so, lets get started.........             :-) 





      The HTML <small> element is found within the <body> tag. The <small> tag is used to make the text one size smaller (ie: from x-large to large, large to medium, medium to small). The <small> tag can not make the text smaller than the browser's minimum font size.



       Example 

      <!DOCTYPE html>
      <html>
      <head>
      <title>Small Text </title>
      </head>


      <body>


      <p>Made with Kumar Atul Jaiswal.</p>
      <p><small>Made with Kumar Atul Jaiswal.</small></p>


      </body>
      </html>








        Result  

      Kumar Atul Jaiswal.
      Made with Kumar Atul Jaiswal.







        Attribue  

      None.




        Gloabal Attribute  

      The <small> tag also supports the Global Attributes in HTML5.





         Event  Attribute  

      The <small> tag also supports the Event Attributes in HTML5.








      Have a Nice Stay Here.       :-) 











    • HTML i and em Tag





          HTML Italic Tag    

      The HTML <i> element defines a italic tag, withoud any extra importance.



         Exapmle   


      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML italic  <i> Tag</title>
      </head>

      <body>

      <p>Hello, This is <i>Kumar Atul Jaiswal.</i></p>


      </body>
      </html>





         Result   

      Hello, This is Kumar Atul Jaiswal.







         HTML Emphasis Tag    




      The HTML <em> element defines emphasized text, with added semantic importance.




         Exapmle   


      <!DOCTYPE html>
      <html>
      <head>
      <title> HTML italic  <i> Tag</title>
      </head>

      <body>

      <p>Hello, This is <em>Kumar Atul Jaiswal.</em></p>


      </body>
      </html>




         Result   


      Hello, This is Kumar Atul Jaiswal.





      Each of the above tags is generally interpreted by the browser in a similar way.
      The two commonly used tags to place italics onto a website are <em> and <i>.
      They are short and sweet.




      Note:  Browsers display <strong> as <b>, and <em> as <i>. However, there is a
      difference in the meaning of these tags: <b> and <i> defines bold and italic text,
      but <strong> and <em> means that the text is "important".






          <b> Bold Tag <strong> Tag    


             Follow this Link :-    <b> Bold Tag                





    • HTML Text Formating

      HTML Bold and Strong Elements




                  HTML Bold <b> And <Strong> Elements              

             
      The HTML <b> elements define bold text without any extra importance.


      HTML <b> Tag. The HTML <b> tag is used to create a 'b' element, which represents bold text in an HTML document. The <b> tag should be used to markup text as bold without conveying any extra importance, for example in article abstracts, where the beginning of an article is set in bold text.



      Syntax


      The <b> tag is written as <b>  </b> with the text to be bold inserted between the start and end tags.

      Like This :

                          <b>This text is bold.</b>                        




      Example


      <!DOCTYPE html>
      <html>
      <head>
                  
                  
      <title>HTML Bold Tag</title>
                  
                  
      </head>
                  
      <body>
                  
      <p>This is normal line.</p>
      <p><b>This text is bold.</b></p>
                   
      </body>
      </html>




      Output


      This is normal line.
      This text is bold.







      Attributes





      Attributes can be added to an HTML element to provide more information about how the element should appear or behave.
      There are 3 kinds of attributes that you can add to your HTML tags: Element-specific, global, and event handler content attributes.

      The <b> element accepts the following attributes.






      Have a Nice Stay Here  :) 








    • WHAT WE DO

      We've been developing corporate tailored services for clients for 30 years.

      CONTACT US

      For enquiries you can contact us in several different ways. Contact details are below.

      Hacking Truth.in

      • Street :Road Street 00
      • Person :Person
      • Phone :+045 123 755 755
      • Country :POLAND
      • Email :contact@heaven.com

      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.