Computer Science, asked by titikshapatil098, 7 months ago

Write html code to display a text Information Technology having Size 40 ,text color red,dotted border to the text,background color yellow.​

Answers

Answered by Anonymous
0

Answer:

<!DOCTYPE html>

<html>

<head>

<style>

p {

 border-style: dotted;

 border-width: 4px;

 border-color: red;

}

</style>

</head>

<body>

<h1>This is a Heading</h1>

<p>This is a paragraph.</p>

</body>

</html>

hope it helps u

mark me as brainliest

Similar questions