Computer Science, asked by mdmuksedur1998, 7 months ago

Write a program in HTML to use the border properties with output.​

Answers

Answered by faseelaandru
0

<html>

<head>

<title>My webpage</title>

</head>

<body style="margin: 0">

<div class="container">

 <p style="border-style: dotted">Hello I am an output</p>

 <p style="border-style: double">Hello I am another output</p>

 <p style="border-style: solid">Hello I am another output</p>

</div>

</body>

</html>

Similar questions