Computer Science, asked by anant79631, 1 year ago

How would you indent a single word and put a sqare in front of it?

Answers

Answered by Anonymous
10

How would you indent a single word and put a square bracket in front of it ... Single word square bullet font Wordpad

Answered by ankurbadani84
2

Answer:

Explanation:

Square bracket opening [ has ASCII character as &#91.

Square bracket closing ] has ASCII character as &#93.

You need to &# charter to display ascii character in HTML.

<html>

<body>

<br>

&#91 Word

</body>

</html>

Above HTML program will put square bracket.

If we want to put square bullet then answer is as below:-

<ul type="square"><li>WORD</li></ul>

Similar questions