diff --git a/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md b/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md index 8569a3b7be..11bb34994b 100644 --- a/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md +++ b/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md @@ -16,7 +16,7 @@ Span Tags ```` are self closing tags meaning they do not need a ``/>``. An example of how a ```` tag inserts a space between text can be seen below. - ``

Hello may name is James

`` + ``

Hello my name is James

`` If you assign a class to your ```` then you could add some css to it. Like so, @@ -36,6 +36,14 @@ You can also give the ```` some inline-style properties, as shown below. ``

Hello my name is James

`` +## Using Non-Breaking Space + +A non-breaking space is a space that will not break into a new line using ** **;. + +For example + +``

Hello my name is James

`` + ## More Information For more information on the tag or on; How to Insert Spaces or Tabs in Text Using HTML and CSS, you can visit w3schools. https://www.w3schools.com/tags/tag_span.asp