Random Images
by davidxmartins
HTML
<!--
<a href="https://apimel.pt">THIS IS A BUTTON</a>
-->
<div>
<img src="https://picsum.photos/1600/900?random=2">
</div>
CSS
body {
margin: 0;
}
/*
a {
padding: 20px 40px;
margin: 50px;
background: green;
color: white;
font-family: sans-serif;
text-decoration: none;
font-size: 25px;
font-weight: 700;
transition: all 0.5s;
border: solid 5px blue;
}
a:hover {
background: red;
color: black;
font-size: 40px;
border: solid 20px lightblue;
}
*/
div {
width: 500px;
height: 300px;
}
img {
width: 100%;
}
/* background: url(https://picsum.photos/1600/900?random=2) no-repeat center center; */