Do you mean how my HTML level is? - in that case i have worked with html 1 year, approximately.
I dont know anything about the HTML in this assignment.
How should i combine this CSS code/sheet to some HTML i do not have. - maybe i dont understand the task right… Shall i code the HTML by myself?
I believe that’s what you’re being asked to do. You need to come up with a design that would require those CSS rules, and then implement that in HTML. The names of the rules lower down should give you a pretty good clue as to the basic layout.
Okay. I’m hard to imagine how to start the html sheet. My skill level, is not that high yet. If you have time and want to help, maybe you can give an example of how to start the HTML coding if the HTML coding should match the predefined css sheet?
I’ve been facing this task and I can’t solve it. I would therefore ask if there are any who can create an HTML sheet that will match the CSS sheet.
That would make me very grateful. Thanks in advance.
I do not think anyone is going to write it for you but they will help if you try. What do you have so far?
You say you have been using html for a year so you should be able to create an html page, start with that. The wrapper holds the header, content and left column.
The first problem I have is that although I might have a rough thought about style, out of habit I always write HTML before CSS. I have trouble working backwards.
First thing I can use that would help me is to recognize the CSS selectors.
element selectors imply corresponding HTML elements
id selectors imply a single corresponding HTML element
class selectors imply multiple corresponding HTML elements
After that, I would look at the CSS rules for the various blocks and, having a general idea of what they can do, try to imagine what kind of HTML layout could benefit from those styles.
My last step would be trying different page layouts repeatedly until I was satisfied with the results.
BUT, because this is for an assignment, it might be you get graded based on completing the requirements despite how it renders?
Thank you very much. I also do like you. Starting with html, then I’m styling it. This task is just a task where we should try to make it “backwards” to prepare for this assignment if it should be in an exam. So I’m not judged on this task.
That sounds fair. (caution though, my concept of “task” would likely seem eccentrically out-of-date and outside of reality to many)
To get deeper into the
If I thought the process might get messy with notes, arrows, and cross-outs, I would use pen and paper. Otherwise I might use a text file editor directly.
To begin, I would ignore all the rules - the {} bits.
Then I would list the selectors. Perhaps in their use order, or by type if that would be easy enough straight away.
To reemphasize, the very first take-away is to be able to identify the selectors by element, id, and class. Putting aside other types of selectors for now, but keeping note of them.