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

#1 2011-05-30 13:21:11

Gveradux
Scratcher
Registered: 2010-06-18
Posts: 100+

Help! HTML

I don't understand HTML or anything.

I want to make a website:

DON'T SAY:

TUTORIAL
LEARN
BOOK
READ


I want somrthing that makes it for me. If it was scratch project it would be better as then it wouldn't take up as much space. ANd I can be sure novirus

Offline

 

#2 2011-05-30 13:37:25

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Help! HTML

Try Weebly. (Google it.)


/* No comment */

Offline

 

#3 2011-05-30 13:43:04

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: Help! HTML

Just look for a tutorial or read a book to learn HTML.  big_smile

JK, look at this: http://en.wikipedia.org/wiki/Web_conten … ent_system.
BTW this belongs in misc.

Last edited by meew0 (2011-05-30 13:44:05)


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#4 2011-05-30 13:48:19

Gveradux
Scratcher
Registered: 2010-06-18
Posts: 100+

Re: Help! HTML

No website makers or tutorial. I definitely want scratch project that makes HTML now. Has anyone made on

Offline

 

#5 2011-05-30 13:50:34

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: Help! HTML

Gveradux wrote:

No website makers or tutorial. I definitely want scratch project that makes HTML now. Has anyone made on

Try this: http://scratch.mit.edu/projects/TornFusion/1817030
I haven't made it myself, but it is definitely great.


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#6 2011-05-30 15:54:51

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

Re: Help! HTML

I know you said no book, but there IS an awesome book to learn it mentioned in the link  in my sig.

Offline

 

#7 2011-05-31 04:24:45

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

Re: Help! HTML

meew0 wrote:

Gveradux wrote:

No website makers or tutorial. I definitely want scratch project that makes HTML now. Has anyone made on

Try this: http://scratch.mit.edu/projects/TornFusion/1817030
I haven't made it myself, but it is definitely great.

Yay. That's my project. It's GREAT. Im adding more blocks.

Offline

 

#8 2011-05-31 10:58:43

Mcsugarface
Scratcher
Registered: 2009-11-16
Posts: 100+

Re: Help! HTML

Wait, you want to make a web site to publish online? The project by TornFusion doesn't do everything though. Can I build something of your project TornFusion?


Hi! I'm http://blocks.scratchr.org/API.php?user=USERNAMEHERE&action=onlineStatus&type=text!
http://internetometer.com/imagesmall/11070.png

Offline

 

#9 2011-05-31 11:01:34

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

Re: Help! HTML

Mcsugarface wrote:

Wait, you want to make a web site to publish online? The project by TornFusion doesn't do everything though. Can I build something of your project TornFusion?

Sure. But make sure mine is still better  tongue

Offline

 

#10 2011-05-31 11:16:16

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Help! HTML

This website is a really good place to start getting to grips with HTML.
www.w3schools.com/html/

If you want to make a website, it'll help, and if you're to lazy then go use a website lik Webs or Weebly.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#11 2011-05-31 13:41:25

Mcsugarface
Scratcher
Registered: 2009-11-16
Posts: 100+

Re: Help! HTML

I think your top recommendation is Kompozer. It's completely free, and you don't have to know any coding. You can use Weebly or Webs, but in my opinion I find it harder to use than HTML. XD But W3Schools are also good, they teach from HTML to Javascript, but I don't really like the online tutorials. WHat I really recommend is the book called Head First HTML with XHTML & CSS (not advertising!  tongue ). The learning method is great! Trust me, you'll learn a lot if you read through it. And already knowing a bit of any type of programming language helps. You can check out all the Head First books at HeadFirstLabs.com, and the HTML book here. The book is very fun!  tongue 

Even though you asked not for tutorials or books, I'll still tell you that, in case you want to do the actual coding yourself!  wink

Doing something on TornFusion's project. It will be out soon. Edit: Actually, I think I'm starting a completely new project.  tongue  It'll be a bit hard to build on TornFusion's project.

Hope I helped!  wink

Last edited by Mcsugarface (2011-05-31 13:45:05)


Hi! I'm http://blocks.scratchr.org/API.php?user=USERNAMEHERE&action=onlineStatus&type=text!
http://internetometer.com/imagesmall/11070.png

Offline

 

#12 2011-06-02 08:35:50

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: Help! HTML

example of a website in HTML
<HTML>
<head>
<base href="url of webpage">
<title>your title for your website goes here.
</title>
</head>
<body>
<h1>heading</h1>
<p>paragraph</p>
<!--comment. this won't show up in the browser-->
<img src="image url" alt="discription">
</body>
<foot>
&copy 2011 All Rights Reserved
</foot>


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#13 2011-06-02 08:50:59

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Help! HTML

TVflea wrote:

example of a website in HTML
<HTML>
<head>
<base href="url of webpage">
<title>your title for your website goes here.
</title>
</head>
<body>
<h1>heading</h1>
<p>paragraph</p>
<!--comment. this won't show up in the browser-->
<img src="image url" alt="description">
</body>
<foot>
&copy; 2011 All Rights Reserved
</foot>

You need to do &lt; to get < to show up, and &gt; for >.

Also:
<br /> line break
<hr /> horizontal rule
<span style="color:red">red text</span>

Offline

 

#14 2011-06-02 09:02:27

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: Help! HTML

scimonster wrote:

TVflea wrote:

example of a website in HTML
<HTML>
<head>
<base href="url of webpage">
<title>your title for your website goes here.
</title>
</head>
<body>
<h1>heading</h1>
<p>paragraph</p>
<!--comment. this won't show up in the browser-->
<img src="image url" alt="description">
</body>
<foot>
&copy; 2011 All Rights Reserved
</foot>

You need to do &lt; to get < to show up, and &gt; for >.

Also:
<br /> line break
<hr /> horizontal rule
<span style="color:red">red text</span>

that stuff wasn't basic so i didn't put it in there.
he wanted basic HTML.


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

Board footer