instead of text based HTML, it's block based and easier to use.
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?
Offline
awsomemaster wrote:
instead of text based HTML, it's block based and easier to use.
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?
It's the code for web pages. Not usually games, but it's possible.
Offline
ScratchReallyROCKS wrote:
awsomemaster wrote:
instead of text based HTML, it's block based and easier to use.
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?
It's the code for web pages. Not usually games, but it's possible.
so it's the code for webpages? that's what i wanted to know thanks
but you can't use it to make webpages from scratch? (for free), i mean if your coding it why can't you make ALL of it instead of paying for hosting?
Offline
awsomemaster wrote:
instead of text based HTML, it's block based and easier to use.
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?
Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>
write that in notepad and save it as website.html and open it. You will see a website that says hello.
Offline
midnightleopard wrote:
Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like thisCode:
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>write that in notepad and save it as website.html and open it. You will see a website that says hello.
Just to show how you can be lazy,
, I think that this:
hello
will display correctly in a browser (the same as yours). Also, doing this:
<head> <title>Foo</title> <body> hello
would probably work.
Last edited by nXIII (2010-09-20 16:46:01)
Offline
nXIII wrote:
midnightleopard wrote:
Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like thisCode:
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>write that in notepad and save it as website.html and open it. You will see a website that says hello.
Just to show how you can be lazy,
, I think that this:
Code:
hellowill display correctly in a browser (the same as yours). Also, doing this:
Code:
<html> <head> <title>Foo</title> <body> hello </body> </head> </html>would probably work.
Offline
midnightleopard wrote:
awsomemaster wrote:
instead of text based HTML, it's block based and easier to use.
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?
Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like thisCode:
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>write that in notepad and save it as website.html and open it. You will see a website that says hello.
open it with what? notepad? because that just shows the code.
Offline
awsomemaster wrote:
midnightleopard wrote:
awsomemaster wrote:
yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like thisCode:
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>write that in notepad and save it as website.html and open it. You will see a website that says hello.
open it with what? notepad? because that just shows the code.
No, they mean write it in notepad and then save it as website.html that means, when you open it, it will open in your default browser.
I like this code:
<head> <title>Nothing</title> <body> Hello! Nothing to see here. <br> <br> <a href="http://scratch.mit.edu/"><button type="button">Go to Scratch.mit.edu</button></a>
Offline
johnnydean1 wrote:
nXIII wrote:
midnightleopard wrote:
Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like thisCode:
<HTML> <HEAD> </HEAD> <BODY> hello </BODY> </HTML>write that in notepad and save it as website.html and open it. You will see a website that says hello.
Just to show how you can be lazy,
, I think that this:
Code:
hellowill display correctly in a browser (the same as yours). Also, doing this:
Code:
<html> <head> <title>Foo</title> <body> hello </body> </head> </html>would probably work.
<head> <title>Foo</title> <body> hello
I meant to leave the end tags out because HTML syntax is very loose and most browsers will accept the above page as valid and parse it. Just like <p>, <td>, <tr>, etc. the end tag for <head> is assumed when <body> is met because the <body> element cannot exist inside the <head> element.
Offline
here i posted a unlisted video on youtube showing what i'm doing
http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ
after that i opened it in notepad and it just showed the code
Offline
awsomemaster wrote:
here i posted a unlisted video on youtube showing what i'm doing
http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ
after that i opened it in notepad and it just showed the codeEPIC FAILZ.
Offline
awsomemaster wrote:
here i posted a unlisted video on youtube showing what i'm doing
http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ
after that i opened it in notepad and it just showed the code![]()
After that you're supposed to open it in your browser.
Offline
ScratchReallyROCKS wrote:
awsomemaster wrote:
here i posted a unlisted video on youtube showing what i'm doing
http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ
after that i opened it in notepad and it just showed the code![]()
After that you're supposed to open it in your browser.
in firefox? how? do i copy the code into the url? because that didn't work
Offline
This is a great idea, and what you have already done is an accomplishment in itself. But, this would probably only be useful for people just starting out in HTMl for one reason. It probably can't support advanced functions, or CSS, PHP, and scripting languages. Also, how will it export?
But other than that, great work
Offline
adriangl wrote:
This is a great idea, and what you have already done is an accomplishment in itself. But, this would probably only be useful for people just starting out in HTMl for one reason. It probably can't support advanced functions, or CSS, PHP, and scripting languages. Also, how will it export?
But other than that, great work![]()
I can answer most of those!
It could definitely support PHP/scripting languages through the use of a script editor for each language (opens up a dialog with a new palette and one hat block, like BYOB's block editor). And exporting is simply saving the blocks as their respective printStrings.
Offline
awsomemaster wrote:
ScratchReallyROCKS wrote:
awsomemaster wrote:
here i posted a unlisted video on youtube showing what i'm doing
http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ
after that i opened it in notepad and it just showed the code![]()
After that you're supposed to open it in your browser.
in firefox? how? do i copy the code into the url? because that didn't work
![]()
never mind i found out how
thanks for all your help
this looks really cool!
Offline
AWSOMEMASTER----------HERE IS SOME HELP FOR HTML-------------
First, go and open up your notepad.
then type this in..
<html>
<head>
<style type="text/css">
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a:link,a:visited
{
display:block;
width:120px;
font-weight:bold;
color:#HHHHHH;
background-color:#98bf21;
text-align:center;
padding:5px;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#7A991A;
}
</style>
</head>
<body>
<ul>
<li><a href="http://scratch.mit.edu">Home</a></li>
<li><a href="http://scratch.mit.edu/forums/">Forums</a></li>
<li><a href="http://info.scratch.mit.edu/Support">Support</a></li>
<li><a href="http://info.scratch.mit.edu/About_Scratch">About</a></li>
</ul>
</body>
</html>then save it as website.html
in your documents file.
turn off your note pad app. and go to your documents file.
then find the document that says website.html
click on that icon.
(try messing around with the html code to get different results)

Offline
<p>When is it coming out?</p>
Offline
HTML is a really easy language. Learn text formating like <b> and <i>, learn tables, learn images, learn links, and you're done. Then master CSS, then master JavaScript, then master php.
I love to use XML in websites, it does nothing but helps organize data a lot better. I can teach it to you in one sentence: Add the tag <?xml version="1.0"?> to your head section, then anything you put between < and > counts as a tag.
you can make things like <project name>House Hunt</project name> <project author>MidnightLeopard</project author> or even <project code="aasdg"> </project code>
also, CGI, or ASP can replace php but they aren't as good. There is also a CSS type language ment for styling XML documents called XSLT.
Offline
Daffy22 wrote:
I see in the screen shot you've managed to delete the stage and sprite menu. How have you do this? It's something I've tried to do in my mod for ages!
![]()
The ScratchFrameMorph is a container for everything. I don't know exactly what you need to edit but it is in ScratchFrameMorph.
Offline