Sie sind auf Seite 1von 1

This is a complete web page:

1. <!DOCTYPE html>
2. <html>
3. <head>
4. <title>This is a webpage</title>
5. <style type="text/css">
6. body { font-family: sans-serif; }
7. a:link, a:visited, a:active { text-decoration: none; }
8. a:hover { text-decoration: underline; }
9. </style>
10. </head>
11. <body>
12. <h1>Seriously</h1>
13. <p>This is a web page</p>
14. <p>Now let's read some more <a
href="http://quora.com">Quora</a>.</p>
15. </body>
16. </html>

If you can't build that, you haven't learned HTML or CSS. You've learned some tags and maybe some
selectors. It's bringing those together that makes a web page. A website is just a bunch of pages that
work together to achieve a particular goal.*
The good news is, learning the basics of web design/development is pretty easy. And there are lots
of great online courses. Here is a great, free one that I recommend:
http://www.codecademy.com/en/tra...
As Tim Samoff mentions in the comments on my answer, what will probably help bring this all
together for you is a better understanding of the CSS Box Model. This link from CSS-Tricks (a great
site, BTW) which Tim recommended will serve you well: The CSS Box Model | CSS-Tricks
*I'm oversimplifying. I know that.

Das könnte Ihnen auch gefallen