1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML Space in html

Discussion in 'Web Development' started by Linx, Jan 31, 2008.

  1. Linx

    Linx Member

    Hi everyone!
    How do I put same space at the beginning of a line, I don't want a new line (so I can't use br and p tags), I just want the sentence to be a little bit inside)
    thanks
     
  2. ishkey

    ishkey Moderator, Logos, Sports Crests Staff Member Verified Member

    Try using the <pre> tag

    <pre> This is preformatted text.
    It preserves both spaces
    and line breaks.
    </pre>

    Notice the spaces and line breaks
     
  3. Linx

    Linx Member

    Hey, ishkey!

    Thank you :)