I'm trying to create an image looking like the cover image here, using only css and html. I've tried different things but nothing has worked so far.
This is my html code:
<div id="container">
<img id="image" src="...">
</div>
What css code should I use?
Set the image's width to 100%, and the image's height will adjust itself:
If you have a custom CSS, then:
HTML:
<img id="image" src="...">
CSS:
Also, you could do
File -> View Source
next time, or maybe Google.