Welcome Coders

! Here is a every thing which is you want !

! Cheatsheet of every coding language is available on this website !


HIML Cheatsheet

  1. Div Section
    <div>Block element</div>
                            
  2. Headings
    <h1>Page title</h1>
    <h2>Subheading</h2>
    <h3>Tertiary heading</h3>
    <h4>Quaternary heading</h4>
                            
  3. Paragraph
    <p style="text-align: center;">text</p>
                            
  4. Image
    <p><img src="/demo.jpg" alt="description" width="100" height="48" /></p>
                            
  5. Mailto link
    <p><a href="mailto:me@ruwix.com?Subject=Hi%20mate" target="_top">Send Mail</a></p>
                            
  6. Inner anchor (jump on page)
    <a href="#footer">Jump to footnote</a>
    <br />
    <a name="footer"></a>Footnote content
                            
  7. Bold text
    <strong>Bold text</strong>
                            
  8. Italic text
    <em>Italic text</em>
                            
  9. Underlined text
    <p><span style="text-decoration: underline;">Underlined text</span></p>
                            
  10. Iframe
    <iframe src="link.html" width="200" height="200">
    </iframe> 
                            
  11. Abbreviation
    <abbr title="Hypertext Markup Language">HTML</abbr>
                            
  12. Comment
    <!-- HTML
    Comment -->
                            
  13. Horizontal Line
    <hr />
                            
  14. Line break
    <br />
                            
  15. Quotation
    <q>Success is a journey not a destination.</q>
    <blockquote cite="https://ruwix.com/">
    The Rubik's Cube is the World's best selling puzzle toy.
    </blockquote> 
                            
  16. Video
    <p><video controls="controls" width="200" height="150">
    <source src="vid.mp4" type="video/mp4" />
    <source src="vid.ogg" type="video/ogg" />
    No video support.
    </video></p>
    
                            
  17. Audio
    <audio controls>
    <source src="sound.ogg" type="audio/ogg">
    <source src="sound.mp3" type="audio/mpeg">
    No audio support.
    </audio> 
                            
  18. Unordered list.
    <ul>
    <li>First</li>
    <li>Second</li>
    <li>Third</li>
    </ul>
                            
  19. Definition list
    <dl>
    <dt>HTML</dt>
    <dd>Hypertext Markup Language</dd>
    <dt>CSS</dt>
    <dd>Cascading Style Sheets </dd>
    </dl>
    
                            
  20. Form
    <form action="/action.php" method="post">
    Name: <input name="name" type="text" /> <br /> 
    Age: <input max="99" min="1" name="age" step="1" type="number" value="18" /> <br />
    <select name="gender">
    <option selected="selected" value="male">Male</option>
    <option value="female">Female</option>
    </select><br /> 
    <input checked="checked" name="newsletter" type="radio" value="daily" /> Daily <input name="newsletter" type="radio" value="weekly" /> Weekly<br />
    <textarea cols="20" name="comments" rows="5">Comment</textarea><br />
    <label><input name="terms" type="checkbox" value="tandc" />Accept terms</label> <br />
    <input type="submit" value="Submit" />
    </form>