Read the document, in its entirety, before beginning your lab. To view this lab assignment in its own tab, click here
Today, you will practice building out a professional-style wireframe document from a provided spec. You are only allowed to use HTML and CSS. No additional frameworks or libraries can be utilized.
Here is the wireframe you will be building out. You may find a larger version of this image in your daily class repo for the respective class day.
Here is the annotated version with a few more details:
Professional wireframes are supposed to keep the presentation of the site simple without any additional content. The whole point of a wireframe is to get the layout figured out, while the real content can get added in the future. Wireframes allow the client to drive what layouts they like and what they don’t like. Wireframes traditionally only contain:
Placeholder images are a great resource inside a wireframe because they are simply placeholders with a size dependent on whatever the url is that you specified. Example: <img src="https://place-hold.it/200x300/ddd" />
produces the following image, with a width of 200 pixels, a height, of 300 pixels, and color of #DDD
, which is a light gray:
Avoid using real images, as it can take away from the layout or theme of the wireframe. It can serve as a distraction to the client during the collaboration and construction of the wireframe.
Create a new repo titled ‘wirefame-exercise’, making sure to configure it with index.html
, style.css
, and reset.css
(use Eric Meyer’s reset).
Consider taking a more professional approach to web development by planning out your approach before jumping into code.
After each step, be sure to “ACP” within your git work-flow.
With this wireframe in place, you can now present it to the designer and/or client for review, make any requested edits, and once there is a signoff on the wireframe, then it is time to start entering the actual content.
Look in today’s GitHub daily class repo directory for a larger version of the wireframe and annotated wireframe.
Your instructional team will grade your assignment, and give you feedback.