Powered By Blogger

Total Pageviews

Sunday, July 10, 2011

More Lessonsss :)

Hi to all of you again J

Last time we tackled about site folder, attributes, tags, deprecated tags, syntax of attributes, doctypes, the three main of doctypes, HTML and XHTML. I learned so many about our lesson from our teacher it gives us more knowledge about making a webpage, blogs and more stuff about computer.  Our next lesson is about file names, side structure, basic document structure, content, presentation, behavior, inline and block elements, and the basic HTML tag and the Meta.


Here’s the very minimum that an HTML 4 document should contain, assuming it has CSS and JavaScript linked to it:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>title</title>
    <link rel="stylesheet" type="text/css" href="style.css">
    <script type="text/javascript" src="script.js"></script>
  </head>
  <body>
  </body>
</html>
If you want to be able to process your document as XML, then this minimal XHTML 1 document should be your starting point instead:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>title</title>
    <link rel="stylesheet" type="text/css" href="style.css"/>
    <script type="text/javascript" src="script.js"></script>
  </head>
  <body>

We will continue about the meanings of content,presentation, and behavior
Thanks for reading my blog hope you like it :)

No comments:

Post a Comment