write an html code to give 10 spaces between the text kips publishing world
Answers
Answered by
26
If u asking about intity character
then
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> Hii There</p>
</body>
</html>
The Entity Character is Working here
if this is wrong then please Explain your question well or send me msg
then
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> Hii There</p>
</body>
</html>
The Entity Character is Working here
if this is wrong then please Explain your question well or send me msg
BoyWhoCode:
otherwise i will use Preformated tag
Answered by
20
<html>
<head>
<title>Basic Program</title>
<style>
p
{
word-spacing:10px;
}
</style>
</head>
<body>
<p>kips publishing world</p>
</body>
</html>
<!Hope this helps -- >
<head>
<title>Basic Program</title>
<style>
p
{
word-spacing:10px;
}
</style>
</head>
<body>
<p>kips publishing world</p>
</body>
</html>
<!Hope this helps -- >
Similar questions