24
Jun 09
As Great as the Theme Repository at Wordpress.org is, it is hard sometimes to find the theme you want, so here are a couple of sites where you can find themes:
at the wordpress site:
other sources:
Amazing WordPress Themes
THemes at Rock Kitty
Theme Lab (they also have some nice tutorials)
you can also do a search on google with terms like “free wordpress themes fashion” and see what you find.
remember that we can change the colors and images on the themes using CSS, so the most important thing is that you like the layout.
if you find a nice source for themes, please leave a comment below.
17
Jun 09
1st Session
1. review the HTML tutorials at w3schools.org,
from HTML HOME until HTML Lists.
2. Make a web page named myname.html (i.e. mine would be sebastian.html)
with the following:
- a page title (goes in the header section);
- a heading (i.e h1)
- a subheading (i.e h4)
- a paragraph which contains: ( p )
- regular text
- one bold word or sentence ( strong )
- a sentence in italics ( em)
- a link to a website that opens on the same window ( a )
- a link that opens in a different window or tab. ( a, look up the “target” atrribute in the links section )
- an image ( img )
- an image that is a link ( a + img );
- a table
- an unordered list with three items ( ul and li )
( relevant tags in parenthesis, if you need to look them up, check out the tag list in the same w3schools page )
Please bring the html page to class (remember to include the image(s) in the same folder as the html file)
2nd Session