This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#26 2012-02-23 23:38:57

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: HTML tutorial for beginners.

fanofcena wrote:

ProgramCAT wrote:

HTML5 is the new standard.
Just saying but you might want to include the new tags like <nav> and <article> into your tutorial.

O really?? why keep web in stoneage ???

Uhh... he's saying that the new tags should be added


Posts: 20000 - Show all posts

Offline

 

#27 2012-02-24 04:49:19

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: HTML tutorial for beginners.

veggieman001 wrote:

fanofcena wrote:

ProgramCAT wrote:

HTML5 is the new standard.
Just saying but you might want to include the new tags like <nav> and <article> into your tutorial.

O really?? why keep web in stoneage ???

Uhh... he's saying that the new tags should be added

tongue  he forgets mentioning the name polyfills and CSS3PIE and lots of shims out there  tongue  without em Opera , Safari and IE will feel left away and websites will look horrible


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#28 2012-02-24 23:33:15

analytic
New Scratcher
Registered: 2012-02-20
Posts: 90

Re: HTML tutorial for beginners.

Great tutorial!  big_smile
Interestingly presented.

Offline

 

#29 2012-02-24 23:38:44

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: HTML tutorial for beginners.

I already know html, but this is a great tut. I host my own website so I can experiment whenever  smile


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#30 2012-03-05 17:17:47

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

Well..., I guess I will explain that better:

Code:

<html>...</html> is the first tag you should use in html.
<body>...</body> tells html that it is the body of the document.
<style>...</style> make it more... STYLISH!

http://i47.tinypic.com/rrqe13.gif

Offline

 

#31 2012-03-05 18:35:34

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: HTML tutorial for beginners.

poemon1 wrote:

Well..., I guess I will explain that better:

Code:

<html>...</html> is the first tag you should use in html.
<body>...</body> tells html that it is the body of the document.
<style>...</style> make it more... STYLISH!

The style tags are used for CSS.

Code:

<html>
<style type="css/text">
body
{
background-color:#FFFFF
}
</style
<body>
Then this text will be #FFFFF
</body>
</html>

I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#32 2012-03-06 01:02:37

slinger
Scratcher
Registered: 2011-06-21
Posts: 1000+

Re: HTML tutorial for beginners.

jji7skyline wrote:

poemon1 wrote:

Well..., I guess I will explain that better:

Code:

<html>...</html> is the first tag you should use in html.
<body>...</body> tells html that it is the body of the document.
<style>...</style> make it more... STYLISH!

The style tags are used for CSS.

Code:

<html>
<style type="css/text">
body
{
background-color:#FFFFF
}
</style
<body>
Then this text will be #FFFFF
</body>
</html>

Um you mean the background colour will be #FFFFFF.
Unless you change background-color: to color:


http://s0.bcbits.com/img/buttons/bandcamp_130x27_blue.png

Offline

 

#33 2012-03-06 01:07:55

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: HTML tutorial for beginners.

slinger wrote:

jji7skyline wrote:

poemon1 wrote:

Well..., I guess I will explain that better:

Code:

<html>...</html> is the first tag you should use in html.
<body>...</body> tells html that it is the body of the document.
<style>...</style> make it more... STYLISH!

The style tags are used for CSS.

Code:

<html>
<style type="css/text">
body
{
background-color:#FFFFF
}
</style
<body>
Then this text will be #FFFFF
</body>
</html>

Um you mean the background colour will be #FFFFFF.
Unless you change background-color: to color:

Sorry, yes. Confused myself  tongue


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#34 2012-03-06 01:11:09

slinger
Scratcher
Registered: 2011-06-21
Posts: 1000+

Re: HTML tutorial for beginners.

:p That's fine, we all do xD


http://s0.bcbits.com/img/buttons/bandcamp_130x27_blue.png

Offline

 

#35 2012-03-06 01:14:50

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: HTML tutorial for beginners.

slinger wrote:

:p That's fine, we all do xD

smile


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#36 2012-03-06 06:35:54

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

Sorry for confusing u guys  tongue


http://i47.tinypic.com/rrqe13.gif

Offline

 

#37 2012-03-06 06:53:07

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

slinger wrote:

jji7skyline wrote:

poemon1 wrote:

Well..., I guess I will explain that better:

Code:

<html>...</html> is the first tag you should use in html.
<body>...</body> tells html that it is the body of the document.
<style>...</style> make it more... STYLISH!

The style tags are used for CSS.

Code:

<html>
<style type="css/text">
body
{
background-color:#FFFFF
}
</style
<body>
Then this text will be #FFFFF
</body>
</html>

Um you mean the background colour will be #FFFFFF.
Unless you change background-color: to color:

Such as...

Code:

body {
background-color: red }

produce the same as:

Code:

body {
background-color: #FF0000 }

http://i47.tinypic.com/rrqe13.gif

Offline

 

#38 2012-03-06 13:08:50

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: HTML tutorial for beginners.

Don't you need a semicolon?  hmm


http://trinary.tk/images/signature_.php

Offline

 

#39 2012-03-06 13:19:53

slinger
Scratcher
Registered: 2011-06-21
Posts: 1000+

Re: HTML tutorial for beginners.

Yeah you do :p


http://s0.bcbits.com/img/buttons/bandcamp_130x27_blue.png

Offline

 

#40 2012-03-06 14:54:55

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

trinary wrote:

Don't you need a semicolon?  hmm

you don't need one if you only have 1 line.


http://i47.tinypic.com/rrqe13.gif

Offline

 

#41 2012-03-07 00:15:09

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: HTML tutorial for beginners.

poemon1 wrote:

trinary wrote:

Don't you need a semicolon?  hmm

you don't need one if you only have 1 line.

...
yes you do
welcome to CSS


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#42 2012-03-07 00:19:44

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: HTML tutorial for beginners.

Most browsers will let it work without one but it can cause problems


Posts: 20000 - Show all posts

Offline

 

#43 2012-03-08 17:39:47

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

veggieman001 wrote:

Most browsers will let it work without one but it can cause problems

Ya. Except my browser(s) don't mess up when i forget a semicolon.


http://i47.tinypic.com/rrqe13.gif

Offline

 

#44 2012-03-08 17:53:12

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: HTML tutorial for beginners.

OK, so here's how to make a form:

Code:

<html>
<body>
<form action="mailto:yourmail@random.com?subject=subject" method="post">
<input type="text" name="one" id="one" size="90">
<p> name </p>
<br>
................. and keep going until you have enough formfields.

to end the form use:

Code:

<input type="submit">
</form>

http://i47.tinypic.com/rrqe13.gif

Offline

 

Board footer