Very basic animations with CSS3: http://htmlpad.org/HTML5-Lesson9/
I found an awesome step-by-step tutorial on how to do this right here:
This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
So far we have explored the semantic markup provided by HTML. Our output has been widely accessible, but slightly bland
Lets take a look at Cascading Stylesheets (CSS), which will be used as a complement to HTML.
Cascading Stylesheets (CSS) provide us with a means to apply stylistic rules to our HTML documents. These rules include font selection, alignment, color, layout, and even animations (with the new CSS3)!
CSS values typically live in the <head></head> section of a document. CSS styles are surrounded by <style></style> tags.
<head> <style type="text/css"> ... style rules here ... </style> </head>
Alternatively, you can create a seperate file containing CSS rules that will be included in HTML documents.
<link rel"stylesheet" href="style.css" type="text/css">
A CSS selector targets a specific page element or even a class of elements such as links or paragraph text and enables us to selectively style to our heart's content. The selectors that we will be covering are:
Selectors are used in conjunction with properties and values. Once you select a page element, you can change its properties, such as color, to different values, such as green. Lets take a look.
selector { property-one: value; property-two: value; }
In the example above, we have created a rule set describing how the browser (Mozilla Firefox, Chromium, etc.) should render the page elements that the selector targets. The rule set is enclosed in curly braces and is preceeded by a selcor. Also notice that each property declaration is separated by a semi-colon. These declarations could be written on the same line, but having them on separate lines makes it easier for us to read.
Lets give our body a nice background. Pick your favorite color from the list of HTML Color Names and then style your background-color.
body { background-color: MediumSpringGreen; }
Headings usually contain large, bold text. The higher the heading level (e.g. <h1>), typically, the larger the font. Lets style our level one headers.
h1 { font-size: 120%; font-weight: bold; }
For this example, the H1 font size is enlarged to 120%. This size is relative to the font-size for the containing document or page element. Using relative font sizes and page dimensions can save you a lot of headache compared to absolute values and can increase the accessibility of your content. For more on relative values, read the article Dao of Web Design.
The font size, style, and color for our page paragraphs may need some adjusting to look good with our fresh background color and large headers. If you chose a dark background-color it will be important to pick a light font color so that visitors can enjoy your content
Lets set the font properties for our paragraphs.
p { color: Tomato; font-family: sans-serif; }
W3Schools: CSS Backgrounds, CSS Text, CSS Fonts
Very basic animations with CSS3: http://htmlpad.org/HTML5-Lesson9/
I found an awesome step-by-step tutorial on how to do this right here:
Some CSS:
http://jsfiddle.net/zmDKv/3/embedded/result/
my first css.
http://makefriendswithalgebra.com/Friendswithstyle.html
http://jsfiddle.net/3eYUW/9/
Hi All,.
How would you use the link command in your index file?
<link rel"stylesheet" href="style.css" type="text/css>
Do you need to have the
<html>
<head>
<style type="text/css">
<link rel"stylesheet" href="style.css" type="text/css>
</style>
</head>
and in the style sheet do you just have this code?
body {
background-color: BurlyWood;
}
h1 {
font-size: 120%;
font-weight: bold;
}
p {
color: blue;
font-family: Century Gothic;
}
Cause that doesnt work
:~(
What would I need to get the link thingy to work?
You need to create a separate CSS file (in this instance, style.css) with the following:
body {
background-color: BurlyWood;
}
h1 {
font-size: 120%;
font-weight: bold;
}
p {
color: blue;
font-family: Century Gothic;
}
And then, on your index file, you should have this on top:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
</head>
You don't need the <style>...</style> tags if you already have an external stylesheet (<link rel="stylesheet" href="style.css" />).
https://thimble.webmaker.org/p/o9q
More to learn.
Really bad, but it's basic for you!
Well that was kinda fun... Played a bit with CSS and that's the result, check it out...
Hi Lisa:
I pass the address of my exercise. I would like you to take a look. I looked at your code and from there, I've taught to use the CSS3 need to learn to work with rounded edges.Haberte recognize "stolen two of the colors of the boxes because I found excellent).Thank you. Sincerely,
Pau Company
CSS is a subject for a class of it's own. I found it dificult to follow. I haven't given up though still.