UX Collective

We believe designers are thinkers as much as they are makers. https://linktr.ee/uxc

Follow publication

Member-only story

CSS for UI Designers

HTML & CSS: a quick and easy introduction for total beginners

Christine Vallaure
UX Collective
Published in
6 min readOct 25, 2024

intro image

If you’ve ever wondered how websites are built, you’ve come to the right place. This guide is for total beginners, particularly UI designers wanting to understand the basics of HTML and CSS — the essential building blocks of every web page.

Video version of this article:

html intro

What is HTML?

HTML (HyperText Markup Language) is the backbone of a website. It provides the structure and tells your browser what each piece of content is. You can actually take a peek at a website’s HTML anytime. Just right-click on a web page (for example, in Chrome) and select Inspect.

Inspect mode in the browser
Inspect mode in the browser

This opens up the Developer Tools, where you can see the HTML structure of the page you’re viewing. You can even make temporary changes to the code just to experiment! Don’t worry. These changes only exist in your browser and will disappear as soon as you refresh.

HTML elements & tags

HTML consists of elements, essentially characters enclosed within angled brackets known as tags. Most HTML elements have an opening tag and a closing tag.

html elements

For example:<p> is the opening tag, and </p> is the closing tag. Tags like these define the type of content they enclose. The <p> tag, for instance, tells the browser to display the enclosed content as a paragraph. The tags themselves are not visible on the page.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Written by Christine Vallaure

Founder of moonlearning.io | Speaker | Author of thesolo.io, a guide to Solopreneurship (coming soon). LinkedIn: www.linkedin.com/in/christinevallaure

No responses yet