This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by stefda
over 9 years

i have finished the code pages and i can't see the final webpage. What did i do wrong? Please help.

         background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            text-align: center;
            background: url("https://codeacademy-content.s3.amazo;
            color: white;
            font-family: Helvetica;
        }
    </style>
    </head>
    <body>
body {   
}
</style>
h1 {
text-align: center;
}
p {
    text-align: center;
    font-size: 24px;
}
input { 
  border: 0;
  padding: 10px;
  font-size: 18px; 
}
</style>
<style>
input[type="submit"] {
  background: limegreen;
  color: black;
}
</style
<body>
</style><!-- I'm a comment. You won't actually see me on the web page.
     You should write your header in the line below me! -->
<img src="https://codeacademy-content.s3.>Stefan Daniels</h1>
<p>Hi ! I am a viticulture consultant in California, covering the coastal viticulture areas. My specialty is is rootstock/clonal selections and trellis formats. If you are intrested meeting with me, please submit your email below. Thank you.</p>
<input type="email">
<input type="email"placeholder="Email">
<input type="submit">
</body>

Answer 54160345631fe9fd9f001f8b

0 votes

Permalink

You have some things a bit mixed up there, but it’s nothing we can’t fix.

  • you should have only one style element
  • that style element must be in the head element
  • the head element is “on top” of the body element, just like us humans. The style element begins and ends, then the body element begins and ends.
<!DOCTYPE html>

<head>
    <style>
     ... all of your CSS rules go in here
    </style>
</head>

<body>
    ... all of your HTML code goes in here
</body>

Take a shot at getting those things sorting into the right places. Come back and let me know how far you get.
points
Submitted by Judy
over 9 years

Answer 5416141b7c82cabb840024d8

0 votes

Permalink

Thank you. I changed it to your suggestion and it got me to the finished, but still no final web page.

points
Submitted by stefda
over 9 years

1 comments

Judy over 9 years

Could you show me your updated code please?