+ 1
Question how to i quote tags without them running as script
If i wanted to created a tutorial page that told someone what tags to use... how do can i write that into my script without i being run as script... like quoting the scripts to be used: eg. <html> <head></head> <body> <h1> Lesson 1 </h1> <p>Lesson; How to change your text to Bold, Itallics etc.... ...To make text bold you need to surroud it with the "<b></b>" open and close tags... </p> </body> </html> Except i want it to display the 'b' tags showing not 'run' them for lack of better terminology
2 odpowiedzi
+ 2
Try writing it like :
<b></b>
Now if you run, the output will be :
<b></b>
> == '>'
< == '<'
0
Brilliant! Thankyou!!