MyBB Community Forums

Full Version: I am so happy I just learned the basics of html
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
After a couple nights of studying html I learned the basics
I learned

Like this

Quote:<html>

<body>

<title> this is a test and this would be the title <title/>

<p> This would be the first paragrph </p>

<p> this is really great here is the second </p>

<p> and so on </p>

</body>

</html>

If I am not wrong I got that all right though html
title
body
and paragraph
that is what I have learned so far
now moving on to css
fine Smile if you have not visited w3schools earlier,
please make it a habit to visit it as often as possible to learn more & more ...
I'm sorry to say but read the rules: http://community.mybb.com/thread-73615.html
Tim B. Wrote:Topics must be meaningful and have a point
Almost got it right, but not quite.

<html>
  <head>
     <title>this is a test and this would be the title</title>
  </head>
  <body>
     <p>This would be the first paragrph</p>
     <p>this is really great here is the second</p>
     <p>and so on</p>
  </body>
</html>

You want to put the <title> tag inside the <head> tag.
You will also need to learn indentation for easy readibility.
What do you mean and please do not be mean I am really trying I know how to change colors by heart now also

<p style=" color: blue"> TEXT HERE </p>
^ Berlo is saying that <title>........</title> should be inside of <head>.....</head> BUT not inside of <body>
Ok I am sorry tell me if this is right

<html>

<body>

<head>

<title> Title goes here </title>

</head>

<p> First paragraph</p>
<p> second paragraph </p>
<p style=" Color: blue"> TEXT GOES HERE you can replace blue with any other color this is the text</p>

</body>

</html>



I just typed that up really fast is that right?
I was not being mean, whatsoever.

You really need to think about this programatically. The <head> tag and the <body> tag are technically child properties of the <html> tag. So you wouldn't put a <head> tag inside a <body> tag. Please read my code, it is how your original code should have been laid out.
So exacllyh what I just posted above
No, you put the <head> tags inside the <body> tags. please look at the code I posted.
Pages: 1 2 3