Reputation: 85
I'm very new to Javascript and HTML but I wondered if there was a way you could make your webpage display the same way as your code. Such as if you had something like this:
<html>
<body>
<input type="button" value="Text">
<b>Hello world Hello<b>
</body>
</html>
Is there some sort of code I can put in to make it display just like that on the webpage. When I try it there aren't that many spaces between the world and Hello.
Upvotes: 0
Views: 68
Reputation: 12662
Put that in a pre tag
<pre>hello hello</pre>
pre tags keep spacing
Upvotes: 2