I am new to coding and experimenting with HTML. I want to display an image before the text "hello html" but for some reason, it is not working. Here is the code I have tried:
<head>
<style>
.img::before {
content: url("img/smartphone.png");
}
</style>
</head>
<body>
<h1 class="img">hello html</h1><br>
<h1>hello html</h1><br>
<h1>hello html</h1><br>
<h1>hello html</h1><br>
</body>