Page: ALL HTML
<header> <h1>HTML Elements for Markdown</h1> <p>This document includes a comprehensive list of HTML elements that can be referenced in Markdown.</p> </header>
<section> <h2>Headings</h2> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> </section>
<section> <h2>Paragraphs</h2> <p>This is a paragraph of text. Paragraphs are separated by an empty line.</p> <p>Another paragraph of text.</p> </section>
<section> <h2>Links</h2> <p><a href="https://www.example.com">This is a link to Example.com</a></p> <p><a href="mailto:someone@example.com">Send an email</a></p> </section>
<section> <h2>Images</h2> <img src="https://via.placeholder.com/150" alt="Placeholder Image" /> <p><img src="https://via.placeholder.com/150" alt="Placeholder Image with caption" /></p> </section>
<section> <h2>Lists</h2> <h3>Unordered List</h3> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
<h3>Ordered List</h3> <ol> <li>First item</li> <li>Second item</li> <li>Third item</li> </ol>
<h3>Definition List</h3> <dl> <dt>HTML</dt> <dd>A markup language for creating web pages.</dd> <dt>CSS</dt> <dd>A stylesheet language for describing the presentation of web pages.</dd> </dl> </section>
<section> <h2>Text Formatting</h2> <p><strong>Strong text (bold)</strong></p> <p><em>Emphasized text (italic)</em></p> <p><u>Underlined text</u></p> <p><s>Strikethrough text</s></p> <p><mark>Marked text</mark></p> <p><code>Inline code</code></p> <p> <pre><code>Code block</code></pre> </p> </section>
<section> <h2>Forms</h2> <form action="#"> <label for="name">Name:</label> <input type="text" id="name" name="name"> <br> <label for="email">Email:</label> <input type="email" id="email" name="email"> <br> <label for="message">Message:</label> <textarea id="message" name="message"></textarea> <br> <button type="submit">Submit</button> </form> </section>
<section> <h2>Tables</h2> <table border="1"> <thead> <tr> <th>Header 1</th> <th>Header 2</th> <th>Header 3</th> </tr> </thead> <tbody> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> <td>Row 1, Cell 3</td> </tr> <tr> <td>Row 2, Cell 1</td> <td>Row 2, Cell 2</td> <td>Row 2, Cell 3</td> </tr> </tbody> </table> </section>
<section> <h2>Semantic HTML Elements</h2> <article> <h3>Article</h3> <p>This is an article section.</p> </article>
<section> <h3>Section</h3> <p>This is a section element.</p> </section>
<aside> <h3>Aside</h3> <p>This is an aside element.</p> </aside>
<footer> <h3>Footer</h3> <p>This is a footer element.</p> </footer> </section>
<section> <h2>Iframe</h2> <iframe src="https://www.example.com" width="600" height="400"></iframe> </section>
<section> <h2>Audio and Video</h2> <audio controls> <source src="audio.mp3" type="audio/mp3"> Your browser does not support the audio element. </audio>
<video controls width="600"> <source src="movie.mp4" type="video/mp4"> Your browser does not support the video element. </video>
</section>
<footer> <p>HTML Elements for Markdown - Created by OpenAI</p> </footer>
Edit