This snippet is extracted from my HTML code and I believe it is pertinent:
<!DOCTYPE html>
<html>
<head>
<style type="text/css>
* {
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<div>
<p>
<ul>
<li>Hello</li>
<li>Hello</li>
</ul>
</p>
</div>
</body>
</html>
Despite all my efforts and knowledge, I can't seem to apply a margin to the li element.
Any suggestions on how to resolve this issue?