Elements are Boxes, with margins and more.
xlixkå
We finished Web Gazette Stage 2.
We started the Resume assignment.
We learned some stuff – the slide shows are in the two posts below this one, so scroll down.
Your HTML resume is due on Tuesday, Sept. 18. You’ll have a chance to upload your assignments and test them. A critique will follow at about 6:00.
After that, we’ll have quiz-like activity. I’ll put you in groups to research some questions about HTML and web design. You’ll be able to use your text, notes and the internet.
Here’s a recap of what you should have read in the text by now:
When I was explaining Web Gazette Stage 2, I neglected to give one important piece of information. Here’s a summary:
The way your assignment is now, all the images are styled to float to the left. This css selector, as you can see, has the “float:left” declaration:
img {
margin:0 15px 15px 0;
float:left;
}
With that, all the images scoot to the left and all the non-image elements wrap around the images to the right of the images.
But we don’t want the logo to float and have the headline wrapping around it. We want both of those elements to stack up like blocks from top to bottom – that’s called “the normal flow” of html.
So we have to override that “float:left” just on the logo image.
We can do that with what’s called an inline style. You can apply CSS styles to individual elements. Here’s how you would apply the relevant style to the logo:
<img src="madisonclg_logo.png" alt="Madison College Logo" style="float:none">
That inline style overrides the more general style in the stylesheet, and it should now work.
See you tomorrow!
xlixkåWeb Gazette Stage 2 is due September 11 during class. You’ll have time to work on it in class (most of you won’t need much more time, I don’t think).
Reading Assignment
In the text, Learning Web Design, read
So! What did we find out about this week?
This week we concentrated on lists, links and images. We also learned about how to invisibly comment your web page.
Need a review? Read chapters 2 and 5 in Learning Web Design.
The relevant portions in Chapter 5 are pages 69 – 77, pages 84 -87, page 92 and page 99.
Sometimes they’re really important. Take the anchor element. What’s an anchor element, such as <a href=”http://www.w3schools.com”>,without the href attribute and value? Not that useful.
Most elements are block-level (they start a new line). But a few are inline. See Learning Web Design page 84.
We added some style to our web pages using CSS. For simple instructions on doing so, see page 65 of Learning Web Design.
Next week, we’ll finish Web Gazette Stage 2 and begin our next assignment – a simple HTML resume. So, be sure to have your resume information rounded up. We’ll start work on it Tuesday the 11th. It will be due before class on Tuesday September 18.
xlixkå
For Tuesday, September 4, start work on Web Gazette Stage One. You can find more information about this on the Assignments page. We’ll have time to work on this project in class on the 4th and I’ll answer any questions you have.
Reading Assignment
In the text, Learning Web Design, read Chapter 5 “Marking Up Text.â€
Everyone has a good start on the fundamentals of making web pages, to wit:
In class, we made a basic web page template for use in all our pages in this class. And we started on our first hands-on html page – Web Gazette Stage 1.
xlixkåHello students enrolled in Web Page Design!
This class is designed to help you learn the vocabulary of web design, to get a solid background in web design fundamentals, and to create several basic web sites.
This will help you as designers because, frankly, much of print design is web-driven these days. Many marketing strategies function without magazine ads or wrapping a bus. But they all include a website. The logos, illustrations, and layouts you conceive during your careers will benefit from knowing how those things will work on the web.
One of the sites you design for this class will be a portfolio where you’ll display the other sites you create in this class.
I strongly suggest you use this opportunity to start creating a portfolio for professional use. Right this minute!
Having a website where clients and prospective employers can get a feel for your work is essential. It doesn’t have to be super-fancy. Some of the coolest professional web portfolios I’ve seen are very bare-bones — just the designer’s name and contact info, and thumbnails that link to larger examples of the work. But all the cool kids have one!
Ann Foley
[email protected]