markdown in html code example

Example 1: dropdown in html

<select>
  <option value="actual value 1">Display Text 1</option>
  <option value="actual value 2">Display Text 2</option>
  <option value="actual value 3">Display Text 3</option>
</select>

Example 2: markdown to html

Find below some markdown to html converter link:
https://markdowntohtml.com/
https://dillinger.io/
https://www.browserling.com/tools/markdown-to-html

Example 3: bold markdown

# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold

# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow

Example 4: html to markdown

Kindly refer below link to convert html to markdown
https://www.browserling.com/tools/html-to-markdown

Example 5: mark tag in html

mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
}

Tags:

Html Example