Jump to content

Css?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
20 replies to this topic

#1
TeenChristian

TeenChristian

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 639 posts
So lately I've been looking at Css and It looks like a really nice language to learn. I would like to start testing it out alittle bit. Thats where I encounter my problem. Is there any free website builder out there (like yola, wix, and freewebs) that gives me the option to just have a blank slate with Css editing?

If I have to buy a custom domain to get my Css work on the web then, for me, there is not much worth in learning it.

Thanks!

PS. What do you think about learning Css?
My Personal Blog l Learning C++ l I'll be famous soon enough.

#2
dbug

dbug

    Programmer

  • Members
  • PipPipPipPip
  • 155 posts
If you use FireFox, you can install FireBug. It allows you (among other things) to dynamically change CSS styles very easily of any loaded page. So it is a good testing platform.

CSS is very powerfull. If you plan to write serious web pages you must know it.

#3
DEViANT

DEViANT

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 358 posts
You could also considder installing wamp on your PC to act as a virtual server, or otherwise install apache and its addons. This will be a good option if you plan on going into php & sql etc... That way you dont HAVE to be connected to the internet to develop scripts

:D You should rep+ me so that I can win :D

My Blog | Ask me!
Error : Satan did it

#4
zeroradius

zeroradius

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,406 posts
CSS much like HTML will work without the internet. Just make it, save it to your computer (in the same directory as the HTML file you will call it from if linking it in), and open it in your favorite browser (wether you have the net connected or not) no need to install anything you can just run it from were you are.


Edit: read the one guys post and forgot you wanted online. All free web that allow you to edit HTML will allow you to have CSS (you may have to make it in the header rather than external thou) because Css is something the BROWSER takes care of not the server. If all else fails you could use a proboards forum and just work with HTML and Css in the global header ^_^
Posted Image

#5
Alexander

Alexander

    It's Science!

  • Moderators
  • 4,118 posts

TeenChristian said:

free website builder out there (like yola, wix, and freewebs) that gives me the option to just have a blank slate with Css editing?
website builder + customisability = not a good idea

Quote

If I have to buy a custom domain to get my Css work on the web then, for me, there is not much worth in learning it.
http://www.000webhost.com/ , start website from scratch, easy as upload + run with your browser, useless to learn/use CSS if it's not applicable other than in a custom environment handle

Quote

PS. What do you think about learning Css?
Well, you only learn what you need to use really, I mean I know how to create margins, padding, borders, colours, some odd CSS effects and that is all I ever use (and I design fairly complex on one project when I do), it should be no more complex than HTML.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.

#6
TeenChristian

TeenChristian

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 639 posts
I started a website at Free Web Hosting with PHP, MySQL and cPanel, No Ads and so far I believe its going fine. All I need to do is learn how to edit the html/Css of the website. There is an option to pick a custom template, but I don't believe that is what I'm looking for. How can I start with no template, and just programming? Thanks ;)
My Personal Blog l Learning C++ l I'll be famous soon enough.

#7
Alexander

Alexander

    It's Science!

  • Moderators
  • 4,118 posts
index.html:
<html>
  <head>
    <title>My CSS page!</title>
    <link rel="stylesheet" type="text/css" href="mystyle.css" />
  </head>
<body>
I am <span class="red">red</span>!<br/>
<span id="indented">I am intented</span><br/>
<span class="border">I got a border!</span><br/>
</body>
</html>
mystyle.css:
/* . = class, # = id, none = whole tag */
.red {
   color:red;
}
#indented {
   margin-left: 40px;
}
.border {
   border: 1px dashed green;
}
Posted Image

Some notes before I go on my coffee binge:
1) You don't NEED to place it in an external file, you can place them in <style>/*css here..*/</style> tags within <head> for testing.
2) For playing around, you may want to play with Tryit Editor v1.4 , it allows a "write and click" update in an iframe, it's a neat tool.
3) Speaking of tryit, follow their CSS easy tutorials, they link to TryIt editor I mentioned to test while you learn: CSS Tutorial

Eh, that is about it. If you make anything feel free to ask me if it's correctly formatted on your host if you upload.

Edited by Alexander, 10 September 2010 - 10:02 PM.

Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.

#8
TeenChristian

TeenChristian

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 639 posts
If I were to use any tutorials I would probably use the link you gave... I believe that would be the best way to go. I have tried their tryit editor, it's a nice little place to practice for beginners. I think right now I'm really just scratching the surface of Css, just to see if it would be a desirable language to learn. Right now I think I'll stick with C++, and who knows maybe Css will be next :)
My Personal Blog l Learning C++ l I'll be famous soon enough.

#9
gokuajmes

gokuajmes

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 518 posts
c++ / CSS i don't get the idea. You want to learn languages for fun ? Go ahead
but if you are series on becoming a webDeveloper throw in a couple of hours on C# and Javascript ( probably jQuery would be nice to start with as a library)

#10
Alexander

Alexander

    It's Science!

  • Moderators
  • 4,118 posts

gokuajmes said:

throw in a couple of hours on C#

How would you know he is on Windows?
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.

#11
TeenChristian

TeenChristian

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 639 posts
Well I do use windows :D Anyway right now I'm learning C++ as a hobby. If I where to go into programming as a job it probably wouldn't be web development. If I where to learn Css it would be just for fun, and to see what I could make.

Edited by TeenChristian, 21 September 2010 - 02:33 AM.

My Personal Blog l Learning C++ l I'll be famous soon enough.

#12
gokuajmes

gokuajmes

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 518 posts
any help with CSS i will be there christian, so don't hold back that question of yours