site_depotoire/exemple/element.html

37 lines
659 B
HTML

<html>
<head>
<title>sdklfj</title>
<style>
a {
display: block;
height: 9em;
width: 19ex;
margin: 0 5px 10px 5px;
float: left;
border: thin solid #000000;
-moz-border-radius: 15px;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-box-shadow: 1px 1px 8px #000000;
box-shadow: 1px 1px 8px #000000;
-webkit-box-shadow: 1px 1px 8px #000000;
overflow: hidden;
}
a img {
}
a:hover {
background-color: red;
}
</style>
</head>
<body>
<div class="element">
<a href="http://localhost/" title="Some description">Microblog</a>
<img src="http://nutritive.org/image/identica.png" alt="Some img" title="img" />
</div>
</body>
</html>