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

#2301 2012-07-15 19:20:35

Eternity_Inc
Scratcher
Registered: 2011-12-07
Posts: 100+

Re: Eternity Incurakai

beyblade4 wrote:

Eternity_Inc wrote:

ok'.  here's some tips, this is how you should start every page.

Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title></title>
</head>

<body>
</body>
</html>

lol, that meta thing always gets me and i never knew about the <html lang="en"> in which I think is language and the title I always forget

ok, well the meta is just inside information for the browser to interpret, or search engines in most cases.  In this case, it's telling the browser to interpret chars (characters) with that encoding (utf-8)

Offline

 

#2302 2012-07-15 19:22:22

beyblade4
Scratcher
Registered: 2011-08-02
Posts: 1000+

Re: Eternity Incurakai

Okay, That's good stuff I need to remember. Anything else beneficial I should know in terms of formatting Text or Media?


http://blocks.scratchr.org/API.php?user=beyblade4&amp;action=projects&amp;type=newest&amp;return=image&amp;num=NUMBER

Offline

 

#2303 2012-07-15 19:24:55

Eternity_Inc
Scratcher
Registered: 2011-12-07
Posts: 100+

Re: Eternity Incurakai

beyblade4 wrote:

Okay, That's good stuff I need to remember. Anything else beneficial I should know in terms of formatting Text or Media?

well, it sounds like you are thinking presentational.  Keep most of everything markup in HTML, but for CSS to work, you're gonna need this in the <head></head> section, preferably right after the last meta, for cleanliness' sake:

Code:

<link rel="stylesheet" type="text/css" href="style.css" />

now you're telling the browser to look for a file in the same directory as this file named style.css, to implement the contents of the file as styling.

Offline

 

#2304 2012-07-15 19:30:46

beyblade4
Scratcher
Registered: 2011-08-02
Posts: 1000+

Re: Eternity Incurakai

Eternity_Inc wrote:

beyblade4 wrote:

Okay, That's good stuff I need to remember. Anything else beneficial I should know in terms of formatting Text or Media?

well, it sounds like you are thinking presentational.  Keep most of everything markup in HTML, but for CSS to work, you're gonna need this in the <head></head> section, preferably right after the last meta, for cleanliness' sake:

Code:

<link rel="stylesheet" type="text/css" href="style.css" />

now you're telling the browser to look for a file in the same directory as this file named style.css, to implement the contents of the file as styling.

Oh okay


http://blocks.scratchr.org/API.php?user=beyblade4&amp;action=projects&amp;type=newest&amp;return=image&amp;num=NUMBER

Offline

 

#2305 2012-07-15 19:38:33

Eternity_Inc
Scratcher
Registered: 2011-12-07
Posts: 100+

Re: Eternity Incurakai

beyblade4 wrote:

Eternity_Inc wrote:

beyblade4 wrote:

Okay, That's good stuff I need to remember. Anything else beneficial I should know in terms of formatting Text or Media?

well, it sounds like you are thinking presentational.  Keep most of everything markup in HTML, but for CSS to work, you're gonna need this in the <head></head> section, preferably right after the last meta, for cleanliness' sake:

Code:

<link rel="stylesheet" type="text/css" href="style.css" />

now you're telling the browser to look for a file in the same directory as this file named style.css, to implement the contents of the file as styling.

Oh okay

ok, wait a second, I need to talk to stevetheipad, were starting the forums transfer.

Offline

 

#2306 2012-07-15 19:40:48

Yoshiboy
Scratcher
Registered: 2011-12-30
Posts: 1000+

Re: Eternity Incurakai

Site is comin' along good guys!!!


Winter...

Offline

 

#2307 2012-07-15 19:41:49

Eternity_Inc
Scratcher
Registered: 2011-12-07
Posts: 100+

Re: Eternity Incurakai

Yoshiboy wrote:

Site is comin' along good guys!!!

thx!

Offline

 

#2308 2012-07-15 22:31:25

Eternity_Inc
Scratcher
Registered: 2011-12-07
Posts: 100+

Re: Eternity Incurakai

bump

Offline

 

#2309 2012-07-15 23:28:46

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

much better... feels good to be back in my own account.  Now, I have to wait for stevetheipad to transfer things over.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2310 2012-07-15 23:34:57

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

I probably won't be doing the newsletter for another month, give or take.  I just don't have time for it here, where I'm staying.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2311 2012-07-16 00:00:50

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

we should have the forums back up by friday.  Friday because I'm not sure how much free time I'm gonna get to administer this.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2312 2012-07-16 08:21:30

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

I  think I'll add the release notes to the tasks homepage


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2313 2012-07-16 08:24:54

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

beyblade, another thing to remember, NEVER use the <font> tag under any circumstances.  What can be done with that can be done with CSS.  Now, sometimes you might want inline styles.  Use the <span> tag like so:

Code:

<span style="property: value">

Last edited by XenoK (2012-07-16 08:25:11)


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2314 2012-07-16 09:10:02

beyblade4
Scratcher
Registered: 2011-08-02
Posts: 1000+

Re: Eternity Incurakai

XenoK wrote:

beyblade, another thing to remember, NEVER use the <font> tag under any circumstances.  What can be done with that can be done with CSS.  Now, sometimes you might want inline styles.  Use the <span> tag like so:

Code:

<span style="property: value">

So the property would mean "color" and value is what a code or....?


http://blocks.scratchr.org/API.php?user=beyblade4&amp;action=projects&amp;type=newest&amp;return=image&amp;num=NUMBER

Offline

 

#2315 2012-07-16 19:07:36

ilackoriginality
Scratcher
Registered: 2011-10-30
Posts: 500+

Re: Eternity Incurakai

I am back after my vacationnn

Offline

 

#2316 2012-07-16 19:21:42

Yoshiboy
Scratcher
Registered: 2011-12-30
Posts: 1000+

Re: Eternity Incurakai

ilackoriginality wrote:

I am back after my vacationnn

http://i45.tinypic.com/ek3hvq.png


Winter...

Offline

 

#2317 2012-07-17 00:43:07

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

awesome!  ok, we are no longer going to have a wiki, as Eternity Doc is replacing that. (Eternity Documentation).  Be sure to check out the new site, ilackoriginality.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2318 2012-07-17 01:00:59

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

progress report no.1 has been added to our new homepage.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2319 2012-07-17 08:41:28

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: Eternity Incurakai

Where is the new link?


http://i47.tinypic.com/2iaa73k.png

Offline

 

#2320 2012-07-17 08:50:00

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

berberberber wrote:

Where is the new link?

http://eternityinc-official.com


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2321 2012-07-17 09:30:49

joletole
Scratcher
Registered: 2011-02-20
Posts: 1000+

Re: Eternity Incurakai

XenoK wrote:

berberberber wrote:

Where is the new link?

http://eternityinc-official.com

I don't get it. You just destroyed over 23 pages of full and hard work. Why would you do that. Besides, I don't like any of these new changes, I like the old Eternity Website better.

Offline

 

#2322 2012-07-17 09:45:09

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

joletole wrote:

XenoK wrote:

berberberber wrote:

Where is the new link?

http://eternityinc-official.com

I don't get it. You just destroyed over 23 pages of full and hard work. Why would you do that. Besides, I don't like any of these new changes, I like the old Eternity Website better.

joletole, you're fired.  You don't even check into us anymore.  So I don't see the hard work that you put into it, seeing you haven't contributed to us in ages.  I ask for a branding meeting, and you don't even show up, and now you have the nerve to tell me I destroyed your hard work, when most of that was my work.  The branding officer spot is now open.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2323 2012-07-17 09:49:44

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

I will be holding auditions for the chief  branding officer role.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2324 2012-07-17 09:51:04

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Eternity Incurakai

XenoK wrote:

joletole wrote:

I don't get it. You just destroyed over 23 pages of full and hard work. Why would you do that. Besides, I don't like any of these new changes, I like the old Eternity Website better.

joletole, you're fired.  You don't even check into us anymore.  So I don't see the hard work that you put into it, seeing you haven't contributed to us in ages.  I ask for a branding meeting, and you don't even show up, and now you have the nerve to tell me I destroyed your hard work, when most of that was my work.  The branding officer spot is now open.

What is a branding officer?


"Submarines are like water like underwater airplanes" O_o

Offline

 

#2325 2012-07-17 09:53:35

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Eternity Incurakai

ExtremelyGamer wrote:

XenoK wrote:

joletole wrote:


I don't get it. You just destroyed over 23 pages of full and hard work. Why would you do that. Besides, I don't like any of these new changes, I like the old Eternity Website better.

joletole, you're fired.  You don't even check into us anymore.  So I don't see the hard work that you put into it, seeing you haven't contributed to us in ages.  I ask for a branding meeting, and you don't even show up, and now you have the nerve to tell me I destroyed your hard work, when most of that was my work.  The branding officer spot is now open.

What is a branding officer?

they make decisions about advertising, logos, and so on.  Marketing stuff.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

Board footer