Computer Science, asked by janvi540, 8 months ago

Observe the following webpage and identify the tag used to create highlight section ​

Attachments:

Answers

Answered by dattarajshinde44
2

Answer:

<html>

<head>

<style>

div {

 background-color: white;

 width: 300px;

 border: 15px solid red;

 padding: 50px;

 margin: 20px;

}

</style>

</head>

<body>

<h2>Box Tutorial</h2>

<p>This Is A Box</p>

<div>This Is A Sample Box.</div>

</body>

</html>

Similar questions