HTML - problema con el footer de mi pagina web

 
Vista:
sin imagen de perfil

problema con el footer de mi pagina web

Publicado por carolina (2 intervenciones) el 20/11/2017 01:58:39
Buenas noches, quisiera que me ayudaran estoy desarrollando una pagina web y cuando voy a realizar mi footer no aparece en la parte de abajo de la pagina principal, le he dado estilo y nada, por favor si me pueden ayudar.

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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="es">
<html>
<head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=dvice-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
        <title>DellServices</title>
      <link rel="stylesheet" href="css/estilos.css">
 
     <body>
       <!--logo-->
      <div id="contenedor">
        <header>
      <a href="dell.html"></a><img src="img/logo.jpg">
      </header>
 
      <!--logo-->
 
     <!--MENU PRINCIPAL-->
     <div>
      <nav id="menu">
            <ul>
            <li><a href="dell.html">HOME</a></li>
            <li><a href="services.html">SERVICES</a>
            <ul class="submenu">
                <li><a href="directional.html">DIRECTIONAL DRILLING</a></li>
                <li><a href="proyect.html">PROJECT MANAGEMENT</a></li>
                <li><a href="drilling.html">DRILLING ENGINEERING</a></li>
                <li><a href="industrial.html">INDUSTRIAL SUPPLY</a></li>
         </ul>
         </li>
            <li><a href="product.html">PRODUCTS</a></li>
            <li><a href="about.html">ABOUT US</a>
            <ul class="submenu">
               <li><a href="ourpeople.html">OUR PEOPLE</a></li>
                <li><a href="ourclients.html">OUR CLIENTS</a></li>
                <li><a href="ourwork.html">OUR WORK</a></li>
             </ul>
             </li>
            <li><a href="careers.html">CAREERS</a></li>
            <li><a href="frequenty.html">FREQUENTLY ASKED QUESTIONS</a></li>
            <li><a href="contact.html">CONTACT US</a></li>
          </ul>
 
         </div>
           <div id="directional.html">
           <img src="img/13.jpg">
 
           </div>
 
       <footer>
        <div>
          <img src="imagenes/logo2.jpg">
        </div>
 
 
<div id="directional.html">
    <h1>Well Steering is a corporation which provides consistent quality directional drilling services and industrial supply to the oil & gas industry. It’s comprised of a qualified team of industry recognized professionals, using an ‘MSc’ support – Management – in providing an outstanding quality of service every other project, Success – achieved while striving to meet client needs, and Competence – Our engineering and sales staff has been well trained about what they do.</h1>
  </div>
</footer>
</body>
 
</html>

esto es la pagina principal
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de Pedro
Val: 277
Bronce
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

problema con el footer de mi pagina web

Publicado por Pedro (74 intervenciones) el 20/11/2017 09:12:10
Hi Carolina, ¿Porqué le pones al id un html.....?

id="directional.html" <<<¡Me no comprender this...!

Aplica estilos por su id ó aplicándole una clase pero aplicando el path a un html no es lo correcto,...alu---...

nQy8rY6
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar
sin imagen de perfil

problema con el footer de mi pagina web

Publicado por carolina (2 intervenciones) el 22/11/2017 03:42:10
buenas noches y disculpa no me fije bien el código de abajo eso no es asi, estaba probando y no me di cuenta, la forma la tengo de esta manera he intentado nada no he podido que me salga en la pagina principal el footer, no se reflexa nada en la inicio.
1
2
3
4
5
6
7
8
<footer class="footer">
   <div class="container">
     <p>Well Steering is a corporation which provides consistent quality directional drilling services and industrial supply to the oil & gas industry. It’s comprised of a qualified team of industry recognized professionals, using an ‘MSc’ support – Management – in providing an outstanding quality of service every other project, Success – achieved while striving to meet client needs, and Competence – Our engineering and sales staff has been well trained about what they do.
     </p>
 
   </div>
 
</footer>

ESTILO ES LA SIGIUIENTE:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#footer{
   margin-top: 6px;
   background-color:  #666666;
   width: 100%;
   color: #ffffff;
}
 
#footer .container{
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: cambria;
  padding: 8px; 4px;
}
 
#footer .container a{
  color: #e44e2d;
}
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar