Ok,so I know HTMl and I want you to tell me what this means if you are new to HTML or are still learning:
<html> <body> <h1>hi</h1> <a href=http://scratch.mit.edu/forums/viewforum.php?id=46>click here</a> </body> </html>

Offline
Hi click here, in whatever font/size you set h1 too?
Last edited by 06dknibbs (2011-02-13 18:12:31)
Offline
It's a white page with "hi" written in large type at the top of the page and a link to http://scratch.mit.edu/forums/viewforum.php?id=46 with text saying "click here".
Offline
hmnwilson wrote:
It's a white page with "hi" written in large type at the top of the page and a link to http://scratch.mit.edu/forums/viewforum.php?id=46 with text saying "click here".
You and rufflebee are the only ones right.

Offline
jfmlove6 wrote:
hmnwilson wrote:
It's a white page with "hi" written in large type at the top of the page and a link to http://scratch.mit.edu/forums/viewforum.php?id=46 with text saying "click here".
You and rufflebee are the only ones right.
yay
but how is 06dknibbs wrong?

Offline
rufflebee wrote:
jfmlove6 wrote:
hmnwilson wrote:
It's a white page with "hi" written in large type at the top of the page and a link to http://scratch.mit.edu/forums/viewforum.php?id=46 with text saying "click here".
You and rufflebee are the only ones right.
yay
but how is 06dknibbs wrong?
He thought H1 was a fontsize but it was actually a heading
What does this mean? </br>
And does it need an opening <br> to work?
Offline
Blade-Edge wrote:
rufflebee wrote:
jfmlove6 wrote:
You and rufflebee are the only ones right.
yay
but how is 06dknibbs wrong?He thought H1 was a fontsize but it was actually a heading
What does this mean? </br>
And does it need an opening <br> to work?
<br> is a break
i don't know what </br> would do because i've never seen it before, but a <br> doesn't need a </br> to work
Last edited by rufflebee (2011-02-13 19:50:43)

Offline
A h1 heading (the biggest) with a link to the Misc forums with the text click here.
Offline
hmnwilson wrote:
It's a white page with "hi" written in large type at the top of the page and a link to http://scratch.mit.edu/forums/viewforum.php?id=46 with text saying "click here".
What this person said
No need to rehash things
Offline
jfmlove6 wrote:
SeptimusHeap wrote:
A h1 heading (the biggest) with a link to the Misc forums with the text click here.
This was the only one exactly right
![]()
Offline
It means (roughly) this:
hi
click here
I can't do h1 with BBCode so I did [b] instead.
Also, just a point, you usually put quotes around strings in tag attributes.
It isn't always necessary, but it's a good idea to do so.
<a href="http://scratch.mit.edu/forums/viewforum.php?id=46">click here</a>
Offline
Blade-Edge wrote:
He thought H1 was a fontsize but it was actually a heading
What does this mean? </br>
And does it need an opening <br> to work?
Zelda123 wrote:
HTML is very simple if you know the tags. Javascript and CSS are a good step off of HTML.
^ This is sort of what I meant.. You can use CSS to alter headings so that <h1> <h2> <h3> always results in large blue text or small green text in Calibri etc:
eg:
Some random website I found on Google.. wrote:
<style type="text/css">
h1 {
font-size: 16px;
color: #006633;
font-weight: bold;
margin-top: 0px;
margin-bottom: 3px;
}
h2 {
font-size: 12px;
color: #3333FF;
font-weight: bold;
margin-top: 0px;
margin-bottom: 3px;
}
</style>
But it's a HTML quiz so I am wrong >.>.
Offline
06dknibbs wrote:
Blade-Edge wrote:
He thought H1 was a fontsize but it was actually a heading
What does this mean? </br>
And does it need an opening <br> to work?Zelda123 wrote:
HTML is very simple if you know the tags. Javascript and CSS are a good step off of HTML.
^ This is sort of what I meant.. You can use CSS to alter headings so that <h1> <h2> <h3> always results in large blue text or small green text in Calibri etc:
eg:
Some random website I found on Google.. wrote:
<style type="text/css">
h1 {
font-size: 16px;
color: #006633;
font-weight: bold;
margin-top: 0px;
margin-bottom: 3px;
}
h2 {
font-size: 12px;
color: #3333FF;
font-weight: bold;
margin-top: 0px;
margin-bottom: 3px;
}
</style>But it's a HTML quiz so I am wrong >.>.
Thats css

Offline
Here is a new next step challange that you have to get exactly right:
<html> <body> <h1>hi!</h1> <h2>hi!</h2> <h3>hi!</h3> <h4>Hi!</h4> <h5>hi!</h5> <h6>hi!</h6> <p> yo whats up? Im [insetnamehere]! <p> <b>hi</b> <i>hi</i> <a href=http://scratch.mit.edu/forums/viewtopic.php?id=53281>gerkljsad</a> </body> </html>

Offline