1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Un titre</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<style type="text/css">
html, body {
margin: 0;
padding: 0;
background-color: #deb887;
color : #344979;
}
.conteneur_a_image {
position: relative;
width : 400px;
height : 300px;
background-color: #ffd;
}
img {
display : block;
}
.la_grande {
width : 400px;
height : 300px;
border : 2px dashed #000;
}
.la_petite {
position : absolute;
right : 6px;
bottom : 6px;
width : 60px;
height : 80px;
background-color: #aaf;
}
</style>
</head>
<body>
<div class="conteneur_a_image">
<img src="---" alt="g" class="la_grande" />
<img src="---" alt="p" class="la_petite" />
</div>
</body>
</html> |