Stay N Tom

Showing a slice of what it means to be Thomas.

Pages

Wednesday, February 27, 2013

Cascading Style Sheets, C.S.S. or, the more stylish machine of doom

Why hello!!!! We are going to learn C.S.S. today. I am so excited to show you this programming language, and the best part is: it can go along with html!!!!!! You know that one thing I was talking about in the comment section? You know the: "After this chapter is done we are going to do this again in a more fun way!!"? Well this is it!!! I will show you how to make it work!!!!

here is what we're doing:



My first styled page <!-- Site navigation menu

My first styled page

Welcome to my styled page!
It lacks images, but at least it has style. And it has links, even if they don't go anywhere…
There should be more here, but I don't know what yet.
Made 5 April 2004
by myself.



-->

my editor does not like CSS. Well this is what we're making:



Lesson 1: CSS new lesson




<html>
<head>
<title>CSS (finally)</title>
<style type="text/css">
p {
    color: purple;
    background-color: green }
</style>
</head>
<body>
<p>Your awesome text here</p>
</body>
</html>

sorry for throwing this at you for no reason I am just so exited

now save it. windowsave as, and call it: css.HTML

No comments:

Post a Comment