Anyone want to help me learn CSS?
2 posters
Page 1 of 1
Anyone want to help me learn CSS?
I've tried the http://w3schools.com/ CSS tutorial, and in my opinion it does not really help me, as I do not know where to plug things in. (I just need it dumbed down..haha) I am also practicing html and I have the extreme basics down, if that helps. c: Thanks for any help!<3
Pear
Pear
Pear- Member
- Posts : 21
Beak Points : 4312
Reputation : 1
Join date : 2013-03-04
Age : 28
Location : The Moon
Re: Anyone want to help me learn CSS?
What do you mean where you plug things in? c:
Lonin might be able to help. Maybe. There are other people who are better. c:
Lonin might be able to help. Maybe. There are other people who are better. c:
Lonin- Community Advisor
- Posts : 139
Beak Points : 4492
Reputation : 3
Join date : 2013-02-25
Age : 111
Location : Lonin is a Lonin, therefore lives in a cave >;3 Hehehe. - That's cool :D
Re: Anyone want to help me learn CSS?
I've been searching online where to plug it in (Into html. c:) and it says inside the head?
So I'd go:
I really appreciate your help. ^-^ I just started yesterday, and I've only been studying for about 13 hours, so I'm really new..haha
So I'd go:
- Code:
<html>
<head>
<style type="text/css">
Put css here?
</style>
</head>
<body>
</body>
</html>
? haha x)
I really appreciate your help. ^-^ I just started yesterday, and I've only been studying for about 13 hours, so I'm really new..haha
Pear- Member
- Posts : 21
Beak Points : 4312
Reputation : 1
Join date : 2013-03-04
Age : 28
Location : The Moon
Re: Anyone want to help me learn CSS?
Ahh well there's various ways to do it. Either in the actual tag you're using
So you'd make a new file called whatever.css and add all your CSS in there. Then you just link to it in your head
You could try going through the web fundamentals thing on this site: http://www.codecademy.com/ c: Might be more useful to you than w3
- Code:
<p style="color:sienna;margin-left:20px">text</p>
- Code:
<head>
<style>
hr {color:sienna;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
</style>
</head>
So you'd make a new file called whatever.css and add all your CSS in there. Then you just link to it in your head
- Code:
<head>
<link rel="stylesheet" type="text/css" href="whatever.css">
</head>
You could try going through the web fundamentals thing on this site: http://www.codecademy.com/ c: Might be more useful to you than w3
Lonin- Community Advisor
- Posts : 139
Beak Points : 4492
Reputation : 3
Join date : 2013-02-25
Age : 111
Location : Lonin is a Lonin, therefore lives in a cave >;3 Hehehe. - That's cool :D
Re: Anyone want to help me learn CSS?
Ah, that makes sense. x) I'll have to come back later, my internet's going to go out.
I'll probably run into more questions through my studies. ^-^
Thank you! c:
I'll probably run into more questions through my studies. ^-^
Thank you! c:
Pear- Member
- Posts : 21
Beak Points : 4312
Reputation : 1
Join date : 2013-03-04
Age : 28
Location : The Moon
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum