Copy link to clipboard
Copied
como agregar una imagen en el footer y agregar formulario y texto enfrente de la imagen en dreamweaver
The easiest way is to use a background image as per Tryit Editor v3.5
Another way is to use style rules to place the text on top of the image as per
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
#container {
height: 400px;
width: 400px;
position: relative;
}
#image {
position: absolute;
left: 0;
top: 0;
}
#text {
z-index: 100;
position: absolute;
color: white;
font-size: 24px;
font-weight: bold;
left: 150px;
top: 190px;
}
</style>
</head>
<body>
<div
...Copy link to clipboard
Copied
The easiest way is to use a background image as per Tryit Editor v3.5
Another way is to use style rules to place the text on top of the image as per
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
#container {
height: 400px;
width: 400px;
position: relative;
}
#image {
position: absolute;
left: 0;
top: 0;
}
#text {
z-index: 100;
position: absolute;
color: white;
font-size: 24px;
font-weight: bold;
left: 150px;
top: 190px;
}
</style>
</head>
<body>
<div id="container">
<img id="image" src="http://www.noao.edu/image_gallery/images/d4/androa.jpg" />
<p id="text">
Hello World!
</p>
</div>
</body>
</html>