what is 26mdash in html

Solutions on MaxInterview for what is 26mdash in html by the best coders in the world

showing results for - "what is 26mdash in html"
Lucas
04 Apr 2018
1<!--run this on the browser -->
2
3<!DOCTYPE html>
4<html>
5<style>
6body {
7  font-size: 20px;
8}
9</style>
10<body>
11
12<span style='font-size:100px;'>&#8212;</span>
13<p>I will display &#8212;</p>
14<p>I will display &#x2014;</p>
15<p>I will display &mdash;</p>
16
17</body>
18</html>
19<!--run this on the browser