Write a program in HTML to use the border properties with output.
Answers
Answered by
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