Categories
web

Wireframe to mockup

In this video, I’m adding the bells and whistles to my wireframe to transform it into a design that will inform my HTML and CSS.

Categories
web

Different approaches to responsive images

Responsive images will automatically adjust to fit the size of the screen. This is important when we are designing websites or apps that adapt to the device or screen they are displayed on.  These videos walk through some common approaches. While you are watching these videos, you should have a Codepen open so you can […]

Categories
web

Design and code a simple website – from go to whoa – Part 1

In this article, we are looking at the first steps to code a website with HTML and CSS. Hopefully, we can dispel some of the anxiety around getting started. As you will see, it isn’t that hard if you think through what you want to achieve.  Plan the layout The best advice I can give about […]

Categories
web

Creating wireframe designs with Adobe XD

A wireframe is your blueprint design. It ensures that all design and usability problems are addressed before you go ahead and spend time on the high fidelity design work. In this three part video series, we will step through the process of building a mobile website wireframe in Adobe XD.

Categories
web

How to use media queries to make responsive CSS designs

Media queries are useful when you want to modify your site or app depending on a device’s general type — such as print vs. screen — or specific characteristics and parameters — such as screen resolution or browser viewport width. We write a media query like this: Media queries are crucial in creating responsive web […]

Categories
web

Writing HTML and CSS in a text editor

In the demonstration below, we look at setting up a local HTML/CSS authoring environment. CodePen is excellent for experimenting, testing, and sharing work, but at times we will need to develop our files on our own local hard drives. File management is important when working locally. You’ll need to make sure you are clear about […]

Categories
web

With Flexbox you can make complex HTML/CSS page layouts

Flexbox is a CSS layout module. Flexbox allows elements in a container to be responsively arranged depending on the size of the container. Flexbox gives a container the ability to alter its items dimensions in order to best fit in the available space. A container with flexbox applied can expand or shrink its child items […]

Categories
web

First steps with Adobe XD: Building a website mock-up

XD is an integrated tool for the user interface (UI) and user experience (UX) design process. You can create flowcharts, wireframes, mock-ups, interactive prototypes, and animations – all in the one design space.

Categories
web

Downloading projects from CodePen and opening them in a code editor

Updated 25/3/2021 CodePen is fantastic for testing and experimenting with HTML and CSS. It is also great for documenting and sharing your work. At some stage though, you will want to move that work to a local environment to continue your development. By ‘local environment’, I mean your own computer. You will want to download […]

Categories
web

The CSS position property allows manipulation of the HTML flow

The position property allows you to specify position values for an element. You can move an element around the page in relation to the document or parent elements. You can take an element completely out of the HTML flow and fix it permanently in one position. There are a number of values you can assign […]