Observe the following webpage and identify the tag used to create highlight section
Attachments:
Answers
Answered by
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