PDA

View Full Version : Anyone learning CSS, HTML, or Javascript?



Cascade
04-24-2013, 01:41 PM
Title says it all, i'm also learning. I thought it would be cool to discuss it with other learners and discuss problems we have encountered and such.

Mysticaleagle
04-24-2013, 03:07 PM
I am! Just starting in. Learning on how to edit the whole web page in front of you using Firefox's HTML. Also learning to edit or create a CSS block into the JavaScript of the page. Still newbie.

Wowsome
04-24-2013, 03:14 PM
i am brushing up @ http://www.codecademy.com/learn sometimes :)

Cascade
04-24-2013, 03:52 PM
Yep i'm using codecademy too, really great program.

Lady_Pebbles
04-24-2013, 04:07 PM
I learned how to write html/dhtml & css when I was young. I miss having a desk top and laptop... doing all types of things with (and even to) them lol. I hated using other proggies to write html, always went with a notepad & started fresh with what I knew then did research and plugged in what I wanted as I learned more. It was many work in progress .html files but at the same time, had many fiinshed products too. I just did it all for fun!

Here are some of the sites I recommend to help yall out:

HTML Drive.net (http://www.htmldrive.net)
CSS Drive.com (http://www.cssdrive.com)
Dynamic Drive.com (http://www.dynamicdrive.com)

Cascade
04-24-2013, 04:24 PM
I learned how to write html/dhtml & css when I was young. I miss having a desk top and laptop... doing all types of things with (and even to) them lol. I hated using other proggies to write html, always went with a notepad & started fresh with what I knew then did research and plugged in what I wanted as I learned more. It was many work in progress .html files but at the same time, had many fiinshed products too. I just did it all for fun!

Here are some of the sites I recommend to help yall out:

HTML Drive.net (http://www.htmldrive.net)
CSS Drive.com (http://www.cssdrive.com)
Dynamic Drive.com (http://www.dynamicdrive.com)



Thank you!

Lady_Pebbles
04-24-2013, 04:25 PM
Yw! Have fun with its addictive coding. XD

Zeus
04-24-2013, 04:52 PM
Visual Basic here :/

Promagin
04-24-2013, 10:21 PM
Yeah, I've been working with JavaScript for about 10 years

Wowsome
04-25-2013, 03:33 AM
Yep i'm using codecademy too, really great program.



I learned how to write html/dhtml & css when I was young. I miss having a desk top and laptop... doing all types of things with (and even to) them lol. I hated using other proggies to write html, always went with a notepad & started fresh with what I knew then did research and plugged in what I wanted as I learned more. It was many work in progress .html files but at the same time, had many fiinshed products too. I just did it all for fun!

Here are some of the sites I recommend to help yall out:

HTML Drive.net (http://www.htmldrive.net)
CSS Drive.com (http://www.cssdrive.com)
Dynamic Drive.com (http://www.dynamicdrive.com)




Visual Basic here :/


Yeah, I've been working with JavaScript for about 10 years

Good to know!

Off-topic: I started out by learning Pascal 11 years ago. Anybody know good old Pascal? :)

Lady_Pebbles
04-25-2013, 06:07 AM
I member Pascal woooow lol! I even member* Dreamweaver hahahaha... Hated Dreamweaver though. I felt it made everything more complicated considering I was so used to a Notepad & a keyboard LOL.

EDIT: Try Greasemonkey on FireFox too! I used that years ago. Used to let you view live sites and edit them their coding for your own view, among other things. Great add-on.

Wowsome
04-25-2013, 11:56 AM
I member Pascal woooow lol! I even member* Dreamweaver hahahaha... Hated Dreamweaver though. I felt it made everything more complicated considering I was so used to a Notepad & a keyboard LOL.

EDIT: Try Greasemonkey on FireFox too! I used that years ago. Used to let you view live sites and edit them their coding for your own view, among other things. Great add-on.



Wow, I didn't really expect a positive response to Pascal!

I tried Greasemonkey on a small freelance project 3 years back, but yeah I don't remember much now :p.

doomdoomdoom
04-25-2013, 01:23 PM
Pascal was my first language...lol...haven't thought about that one in a looooong time.

Wowsome
04-25-2013, 02:51 PM
Pascal was my first language...lol...haven't thought about that one in a looooong time.

Welcome to the club!

Cremated
04-25-2013, 03:15 PM
Hey, I doing HTML in school we are using codes academy if I find something to hard can I ask you guys :)

Cascade
04-25-2013, 03:31 PM
Hey, I doing HTML in school we are using codes academy if I find something to hard can I ask you guys :)

Sure it will be good practice!

razerfingers
04-25-2013, 09:08 PM
so i wanted to get into coding and i checked out code academy and it is fun way to learn! i had fun doing the exercises and next thing i knew i was making a choose your own adventure story lol! but im stuck, cant figure out the 4th part in the choose your own adventure story

Edit: figured it out nvm :)

Cascade
04-25-2013, 11:12 PM
so i wanted to get into coding and i checked out code academy and it is fun way to learn! i had fun doing the exercises and next thing i knew i was making a choose your own adventure story lol! but im stuck, cant figure out the 4th part in the choose your own adventure story

Edit: figured it out nvm :)

Which language is it?

razerfingers
04-25-2013, 11:52 PM
Which language is it?

java script, now im really stuck this time lol!

Cascade
04-26-2013, 12:05 AM
Oh nice i'm doing JQuery right now

razerfingers
04-26-2013, 12:09 AM
if you're familiar with it on code academy. mind helping a bit? or directing me where to go. the instructions were a little too vague or complicated for me lol

Edit: here is a screen shot of it

29065

Wowsome
04-26-2013, 01:49 AM
if you're familiar with it on code academy. mind helping a bit? or directing me where to go. the instructions were a little too vague or complicated for me lol

Edit: here is a screen shot of it

29065

Here you go


// Define quarter here.

function quarter(number) {
return (number/4);
}

if (quarter(12) % 3 === 0) {
console.log("The statement is true");
} else {
console.log("The statement is false");
}

Good luck and keep practicing :)

Cascade
04-26-2013, 09:47 AM
Here you go


// Define quarter here.

function quarter(number) {
return (number/4);
}

if (quarter(12) % 3 === 0) {
console.log("The statement is true");
} else {
console.log("The statement is false");
}

Good luck and keep practicing :)

Or you can do

var quarter = function(number); {
//codehere
}

That's how I always define functions but it doesn't really matter how you do it as long as it is correct.

razerfingers
04-26-2013, 10:11 AM
Or you can do

var quarter = function(number); {
//codehere
}

That's how I always define functions but it doesn't really matter how you do it as long as it is correct.


Here you go


// Define quarter here.

function quarter(number) {
return (number/4);
}

if (quarter(12) % 3 === 0) {
console.log("The statement is true");
} else {
console.log("The statement is false");
}

Good luck and keep practicing :)

thanks guys :) ill have to do that one a few times to grasp it

Cascade
04-26-2013, 10:39 AM
Yeah if statements can be hard to understand.

Wowsome
04-26-2013, 12:08 PM
Or you can do

var quarter = function(number); {
//codehere
}

That's how I always define functions but it doesn't really matter how you do it as long as it is correct.

my man, you are right .. except the semicolon.

razerfingers
04-26-2013, 12:50 PM
when i was trying to do the others i had to look at the forums for reffrence.
because every time i would do if/else the else would show a red x by the line and i didn't know what i was doing wrong with the else. it happened when making my rock paper scissors game i got this far,

console.log("Ready for a friendly rock, paper, scissors game?")
var player1 = prompt("Choose rock, paper, or scissors. Don't use caps pl0x")
var player2 = prompt("Choose rock, paper, or scissors. Don't use caps pl0x")
var player1wins = console.log("Player 1 wins!")
if(player1 === "rock" && player2 === "scissors") {

} else

i couldnt go further because the else was wrong somehow

Edit: aha i didn't see next lessons were teaching you how to make a rock paper scissors game and have it play with the computer. i was doing this other one for fun at end of last one

Greencrow
04-26-2013, 01:17 PM
Back when I was high school :)

HerbalEssence
04-27-2013, 10:36 AM
Hey guys, I've been working with html on and off since I was 14, I did a little css to make the sites I did prettier. You don't have full freedom to customize on a site like Myspace but I did do Lou Gramm of Foreigner's, code and graphics. xD Back in the day.. (wow, does that make me feel old, lol. Just hit my mid 20s) when I got my first domain I used notepad also and an Ftp host. Dunno if those are relevant anymore with free hosting/unlimited bandwith around. Div overlays were a bit of a pain for me.. I've yet to learn Javascript but I'd really love to. :3 I continue to do graphics for fun and freelancing, somehow I still remember basic code after not putting it to use for quite a few years. I live on the eastcoast so there aren't many opporunities for snagging employment as a Graphic Designer or Web Designer. I made a huge mistake when I first went to college by going for an Associates in Science. I plan to go back to community college for the Information Technology Support Specialist program in the fall.

Wowsome
04-28-2013, 12:33 AM
Hey guys, I've been working with html on and off since I was 14, I did a little css to make the sites I did prettier. You don't have full freedom to customize on a site like Myspace but I did do Lou Gramm of Foreigner's, code and graphics. xD Back in the day.. (wow, does that make me feel old, lol. Just hit my mid 20s) when I got my first domain I used notepad also and an Ftp host. Dunno if those are relevant anymore with free hosting/unlimited bandwith around. Div overlays were a bit of a pain for me.. I've yet to learn Javascript but I'd really love to. :3 I continue to do graphics for fun and freelancing, somehow I still remember basic code after not putting it to use for quite a few years. I live on the eastcoast so there aren't many opporunities for snagging employment as a Graphic Designer or Web Designer. I made a huge mistake when I first went to college by going for an Associates in Science. I plan to go back to community college for the Information Technology Support Specialist program in the fall.

I have seen your sigs. Way to go! Really, shoot for designer work and relevant courses :)