Answers for "dash in html"

1

html dash code

—
Posted by: Guest on August-20-2020
1

what is &mdash in html

<!--run this on the browser -->

<!DOCTYPE html>
<html>
<style>
body {
  font-size: 20px;
}
</style>
<body>

<span style='font-size:100px;'>&#8212;</span>
<p>I will display &#8212;</p>
<p>I will display &#x2014;</p>
<p>I will display &mdash;</p>

</body>
</html>
<!--run this on the browser
Posted by: Guest on February-04-2021
2

how to include a dash in html

To display a dash on browser, uses in html "&#8212;" , "&mdash;." 
or Unicode numeric entity of U+2014. eg. ajmal&#8212;the&mdash;developer instead
ajmal-the-developer. -keepCoding:)
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language