Answers for "what is &mdash in html"

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

Browse Popular Code Answers by Language