From 994ef558ee06baeabf34ff7ce260895db670f080 Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Sun, 14 Jul 2013 19:27:23 -0400 Subject: [PATCH] fix favicon, and improve tutorial [#22] --- views/layout.erb | 2 +- views/tutorials.erb | 31 +++++++++++++++++++++++++++---- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/views/layout.erb b/views/layout.erb index 3a60f418..858461e5 100644 --- a/views/layout.erb +++ b/views/layout.erb @@ -27,7 +27,7 @@ - + diff --git a/views/tutorials.erb b/views/tutorials.erb index 6f55e508..bc2602a8 100644 --- a/views/tutorials.erb +++ b/views/tutorials.erb @@ -12,12 +12,16 @@ Until then, please check out the following links to get you started:

+

HTML

+ +

HTML is short for "HyperText Markup Language", and is the basic building block used to build all web sites.

+ -

CSS Frameworks

+

CSS

+ +

CSS is short for "Cascading Style Sheets", which is the code used to set the style of your web pages. It is embedded in your HTML, and directs how your web site should look. If HTML was your house, CSS would be what allows you to decorate the way it looks.

+ + +

CSS Frameworks

+ +

CSS frameworks are pre-built CSS styles that make it easy to quickly build a nice looking web page, without having to "roll your own" set of styles. NeoCities itself uses one as the basis for our design (Brass Tacks). They are very useful, and definitely worth checking out once you have an understanding of how CSS works.

+ + +

JavaScript

+

JavaScript is the programming language that comes standard with all web browsers. You can embed JavaScript code into your HTML to allow you to program your web sites to do things. JavaScript was once a weak language with a lot of problems, but it is now a very fast and powerful language that is used for both web browsers and for complicated server backends (with Node.js). It is a great beginners language if you want to learn how to program, and can be used to perform almost any kind of program.

+ + \ No newline at end of file