We may earn an affiliate commission when you visit our partners.
Course image
Kathleen Farley

Want to learn how to create webpages, but feeling intimidated by HTML and CSS? Not sure where to start? Step-by-step HTML and CSS for Absolute Beginners is a comprehensive and friendly course designed for beginners with NO previous coding or programming experience.

Read more

Want to learn how to create webpages, but feeling intimidated by HTML and CSS? Not sure where to start? Step-by-step HTML and CSS for Absolute Beginners is a comprehensive and friendly course designed for beginners with NO previous coding or programming experience.

  • HTML (HyperText Markup Language) and CSS (Cascading Style Sheets) are the building blocks of the web. If you've ever looked at a website, you've seen HTML and CSS in action.

Whether you want to make changes to your website's template, create new webpages from scratch, or just understand what you're doing when you cut-and-paste embed codes from sites like YouTube or SlideShare — understanding HTML and CSS makes it possible.

since 2009. I believe that with the right approach, anyone can learn anything.

My goal in this course is to help you develop an intuitive understanding of how HTML and CSS work.

As we work together, I'll explain WHY the code we write looks the way it does. I'll point out the simple patterns in the code, so you can learn more quickly and with more confidence.

) students have to say about this course:

"My favourite part was learning how to tilt images and add drop shadows. Also, the instructor cares enough to answer questions promptly. Can't say enough good things about this course. " —R.B.

"Very accurate and detailed explanations with real time examples. For me it was a big step ahead..." —Mihai E.

"[Kathleen] knows exactly the info to deliver and what to leave out to avoid confusion." —Tara

"What I once thought would be overwhelming to learn is surprisingly quite straight forward." —Odette

"This course finally made CSS make sense to me." —Julie G.

"Thank you, Kathleen, for a wonderful course. Never thought coding could be made fun." —Leslie V.

WHAT'

  • This course includes lifetime access to 4 hours of step-by-step videos. You'll also get supplementary text lectures, links to helpful resources, HTML and CSS code examples, and downloadable project files.
  • Short quizzes at the end of each section will help you gauge your own understanding and check your progress along the way.

  • This completely depends on your availability and learning preference. You can work through all the video lectures in one afternoon, or pace yourself over several days or weeks — it's up to you.

  • This course comes with an unconditional 30-day Udemy-backed guarantee. Try out this course for 30 days and see for yourself if my approach to learning HTML and CSS is right for you. If you're not 100% satisfied with this course, simply request a full refund within 30 days — no conditions, no questions asked.

Enrol now and you can start building your own webpage using HTML and CSS today.

—Kathleen Farley (aka Robobunnyattack. )

Enroll now

What's inside

Learning objectives

  • In this course, we'll create a simple "coming soon" webpage using valid html5 and css3 code
  • We'll focus on why the code we write looks the way it does –– so you can develop an intuitive understanding of how html and css work
  • By the end of this course, you'll be able to use html and css with confidence, following best practices every step of the way!

Syllabus

On your mark, get set... GO!

Welcome to Step-by-step HTML and CSS for Absolute Beginners!

In this lesson, you'll learn more about who this course is for, and what this course covers. You'll also meet me, your instructor!

Read more

In this course, we'll be creating a simple "Coming Soon" page using HTML and CSS. Here's what the page will look like.

What is HTML and CSS, and what kind of software do you need to write it? This lesson will help you:

  • Understand what HTML and CSS is used for
  • See some examples of HTML code
  • Discover what software you need to write HTML and CSS code, and where to download it for free

I'll be using Google Chrome and TextWrangler (for Mac) for the rest of these lessons, but you can use any web browser and plain text editor you like.

Let's get started!


Downloads

Download a free web browser:

Download a free text editor:


How do you create HTML pages and CSS stylesheets? This lesson will teach you how to:

  • Prepare a project folder to organize your files
  • Create new empty HTML and CSS files
  • Save your files in the correct format

By the end of this lesson, you should have a folder named "comingsoon" on your computer containing three items:

  1. a blank HTML file (index.html)
  2. a blank CSS stylesheet (style.css), and
  3. an empty folder (images)

Are you ready to check your progress? Let's see how you're doing!

Adding content to your webpage using HTML

HTML stands for HyperText Markup Language. HTML elements form the building blocks of all websites.

In this lesson, you'll learn more about what HTML does.


What's the basic syntax for writing HTML? In this lesson, you'll learn:

  • What HTML tags look like
  • How to open and close tags
  • How to "nest" tags
  • How to preview your webpage in a web browser

By the end of this lesson you'll know how to code:

  1. A DOCTYPE declaration (to tell the web browser what kind of HTML you're using)
  2. The HTML tag (to contain all your HTML code)
  3. The HEAD tag (to contain all the "administrative" information for your webpage)
  4. The BODY tag (to contain all your webpage content)
  5. The TITLE tag (to specify what goes in the title bar for your webpage)

How do you add headings and paragraph text to an HTML page? In this lesson, you'll learn:

  • What "lorem ipsum" is
  • What "soft wrap text" means in your text editor
  • How to show line numbers in your text editor (and why this is useful)
  • How to add paragraph text to your webpage
  • How to add headings and subheadings to your webpage
  • How to include non-displaying comments inside your HTML file

By the end of this lesson you'll know how to code:

  1. The P tag (to identify paragraph text)
  2. The H1 tag (to identify a single main heading text on your webpage)
  3. The H2, H3, H4, H5, and H6 tags (to identify descending levels of subheadings on your webpage)
  4. The COMMENT tag (to add special notes or comments inside your HTML file)

Helpful Links

How do you write special characters like the copyright symbol in HTML? In this lesson, you'll learn:

  • Why you can't just cut-and-paste special symbols into HTML files
  • Where to find HTML codes for special characters and symbols

By the end of this lesson you'll know how to code:

  1. The copyright symbol: ©
  2. Any other special character or symbol, such as the yen sign (¥), fractions (½), accented letters (é), etc.

Helpful Links

How do you add web and email links to an HTML page? In this lesson, you'll learn:

  • How attributes can be used to add extra information to an HTML tag
  • How to add attribute/value pairs to tags
  • How web links differ from email links

By the end of this lesson you'll know how to code:

  1. The A tag (to identify the text that will be linked)
  2. The HREF attribute (to specify where you want the link to go)
  3. HTTP://... and MAILTO:... values (to distinguish between web links and email links)

How do you add images to an HTML page? In this lesson, you'll learn:

  • The three types of image files that web browsers can display (JPEG, GIF, and PNG)
  • Where to store your image files in your project folder
  • When and how to use "self-closing" tags
  • The difference between relative and absolute addressing
  • How to find the width and height of an image in pixels
  • Why it's essential to include accurate HEIGHT, WIDTH, and ALT values for all images
  • What "hotlinking" is, and why you should avoid it

By the end of this lesson you'll know how to code:

  1. The IMG tag (to add an image to your webpage)
  2. The SRC attribute (to tell the web browser where to find the image file)
  3. The HEIGHT and WIDTH attributes (to tell the web browser the size of the image in pixels)
  4. The ALT attribute (to give the web browser an accurate description of what the image is)

Where can you find nice looking icons for your website? In this lesson, you'll learn:

  • Where to find good icon sets to use on your webpage
  • How to download and extract an icon set to your computer
  • Where to store the icon image files you want to display on your webpage
  • How to use copy-and-paste to speed up your coding
  • How web browsers display "block-level" and "inline" elements differently

Helpful Links

How do you make an image into a link on an HTML page? In this lesson, you'll learn:

  • How to make images on your page link to other websites when clicked
  • How to nest IMG tags inside A tags

By the end of this lesson you'll know how to code:

  1. An IMG tag nested inside an A tag

How do you make sure your HTML code doesn't have mistakes in it? In this lesson, you'll learn:

  • Why you should to check your code
  • What it means to "validate" your code
  • When is the right time to validate your code (early and often!)
  • How to use the free W3C Markup Validation Service and interpret the results
  • How to go about solving errors in your code (one at a time, easiest first!)

HELPFUL HINT: If you're getting a "character encoding was not declared" error from the W3C Markup Validation Service, try the following:

  1. Click on "More Options"
  2. Next to Document Type, select "HTML5 (experimental)"

…and then proceed normally with the validation!


Helpful Links

Are you ready to check your progress? Let's see how you're doing!

Controlling the look of your content with CSS

CSS stands for Cascading Style Sheets. CSS is a language used for describing the look and formatting of a document written in a markup language such as HTML.

In this lesson, you'll learn more about why CSS was designed, and why it's useful to keep content (HTML) separate from presentation (CSS).


How do I connect a CSS stylesheet to an HTML webpage? In this lesson, you'll learn:

  • The reason we have separate HTML and CSS files
  • The purpose of HTML vs the purpose of CSS
  • Why it's good to keep content (HTML) separate from presentation (CSS)

By the end of this lesson you'll know how to code:

  1. The LINK tag (to connect an external CSS stylesheet to your webpage)
  2. The REL and TYPE attributes (to describe the CSS stylesheet)
  3. The HREF attribute (to specify where to find the CSS stylesheet)

What's the basic syntax for writing CSS? In this lesson, you'll learn:

  • How (and why) CSS code looks different than HTML code
  • What a "selector" does in CSS
  • How to use curly brackets { } (aka opening and closing braces) in your CSS code, and what goes inside them
  • How to organize your CSS code for better legibility
  • How to include non-displaying comments inside your CSS stylesheet

By the end of this lesson you'll know how to code:

  1. The BODY selector (to control the look of the body in your webpage)
  2. The H1 selector (to control the look of H1 text)
  3. The P selector (to control the look of P text)
  4. The BACKGROUND-COLOR attribute (to change the background color)
  5. The COLOR attribute (to change the color)

How do you change the font type and font size on your webpage? In this lesson, you'll learn:

  • What "web safe fonts" are and why we use these
  • The difference between serif and sans-serif fonts
  • Why it's good to use relative (%) font sizes vs absolute (px) font sizes

By the end of this lesson you'll know how to code:

  1. The FONT-FAMILY attribute (to specify the font we want)
  2. The FONT-SIZE attribute (to specify the size of the font)

Helpful Links

How do you create a nice color scheme for your webpage? In this lesson, you'll learn:

  • Why good color schemes are important
  • How to create color swatches from images
  • How to identify colors by their hexadecimal values

Helpful Links

How do you change the background, text and link color on a webpage? In this lesson, you'll learn:

  • How to control colors on your webpage with more accuracy
  • How to figure out which selector to use in your CSS stylesheet

By the end of this lesson you'll know how to code:

  1. The A selector (to control the look of links)
  2. The BACKGROUND-COLOR attribute (to change the background color)
  3. The COLOR attribute (to change the color)
  4. HEXADECIMAL colors values (to specify colors)

How do you make sure your CSS code doesn't have mistakes in it? In this lesson, you'll learn:

  • Why you should to check your code
  • What it means to "validate" your code
  • When is the right time to validate your code (early and often!)
  • How to use the free W3C CSS Validation Service to troubleshoot your code

Helpful Links

Publishing your webpage: The (not-so-scary) technical stuff

How do you publish your webpage onto the world wide web, where everyone can see it? In this lesson, you'll learn:

  • The difference between domain name registration and web hosting
  • How to register your domain name
  • How to find a web hosting provider
  • What "shared web hosting" is, and who it's for
  • Typical costs involved

What is FTP, and how do you use it? In this lesson, you'll learn:

  • The purpose of File Transfer Protocol
  • Where live HTML and CSS files are stored, or "hosted"
  • What kind of software program you need to use FTP
  • How to use an FTP client (like Cyberduck) to connect to a web server
  • What three pieces of information you need to connect to a web server

Downloads

Download a free FTP client:


How do you upload and download files to and from a web server using FTP (File Transfer Protocol)? In this lesson, you'll learn:

  • How to navigate through files and folders on another server using an FTP client (such as Cyberduck)
  • How to use an FTP client (such as Cyberduck) to move files between your computer and a web server
  • How to view a website's stylesheet through any web browser

How can you edit files directly on a server using FTP (File Transfer Protocol) and a plain text editor? In this lesson, you'll learn:

  • How to save time when editing files online
  • How to configure Cyberduck to use your preferred text editor (TextWrangler or Notepad++) to edit files online
  • How to check the modification time of the files on your server using an FTP client (such as Cyberduck)

Putting it all together: Webpage layout and design

Now that you understand what HTML and CSS do, let's put it all together!

In the next few lessons, we'll edit our HTML file and our CSS stylesheet simultaneously in order to control the layout and presentation of our webpage.


How do you separate different sections of your webpage using HTML and CSS? In this lesson, you'll learn:

  • How to divide your webpage layout into different "sections"
  • How to format your HTML code with tabs for better legibility
  • How to add temporary borders to DIVs to help you understand how your DIVs are positioned on your webpage

By the end of this lesson you'll know how to code:

  1. The DIV tag (in HTML, to identify sections of content)
  2. The ID attribute (in HTML, to label content on a webpage)
  3. The DIV selector (in CSS, to specify styles that apply to DIVs)
  4. The BORDER-WIDTH, BORDER-STYLE, and BORDER-COLOR attributes (in CSS, to specify how a border looks)

How can you change the background color of a DIV? In this lesson, you'll learn:

  • How to identify specific content in your CSS stylesheet using #ID selectors
  • How to understand and predict the behavior of nested DIVs

By the end of this lesson you'll know how to code:

  1. #ID selectors (in CSS, to apply styles to content with a specific ID)
  2. The BACKGROUND-COLOR attribute (in CSS, to specify the background colour of specific content)
  3. The COLOR attribute (in CSS, to specify the colour of specific content)

How do you change the width of a DIV? In this lesson, you'll learn:

  • How to use percentage (%) widths to create flexible, responsive webpage layouts

By the end of this lesson you'll know how to code:

  1. The WIDTH attribute (in CSS, to specify the width of something)

How do you center content inside a DIV? In this lesson, you'll learn:

  • How to align text inside a DIV
  • How centering content inside a DIV is different than centering the DIV itself

By the end of this lesson you'll know how to code:

  1. The TEXT-ALIGN attribute (in CSS, to specify how you want your text to be aligned)
  2. The CENTER value (in CSS, to center content)

How do you center an entire DIV (not just the content inside it)? In this lesson, you'll learn:

  • How centering an entire DIV is different than centering the text inside a DIV
  • How margins relate to a DIV's relative position on the page
  • How to add a "container" DIV to contain all the DIVs on your page
  • How a DIV inherits its relative width from its containing DIV(s)

By the end of this lesson you'll know how to code:

  1. The MARGIN attribute (in CSS, to specify the margins around something)
  2. The AUTO value (in CSS, to set margins "automatically" to be equal)

How can you remove underlines from the links on your webpage? In this lesson, you'll learn:

  • How to use CSS to change the default "look" of links on your webpage

By the end of this lesson you'll know how to code:

  1. The TEXT-DECORATION attribute (in CSS, to change the look of text)

How can you automagically* change the text on your webpage to uppercase or lowercase? In this lesson, you'll learn:

  • How to use CSS to change text to uppercase or lowercase, rather than re-type the text

By the end of this lesson you'll know how to code:

  1. The TEXT-TRANSFORM attribute (in CSS, to change the case of text)
  2. LOWERCASE and UPPERCASE values (in CSS, to change text case to lowercase or uppercase)

*Yes, "automagically." :)

What are "classes," and why are they useful? In this lesson, you'll learn:

  • What "classes" are used for
  • How to create classes and use these to classify content in your HTML code
  • How to identify classes and apply styles to them in your CSS code

By the end of this lesson you'll know how to code:

  1. The CLASS attribute (in HTML, to identify a category or "class" of content)
  2. The .CLASS selector (to CSS, to apply styles to specific categories or "classes" of content)

How can you "float" an image to the right on your webpage? In this lesson, you'll learn:

  • How to create a class that will make elements "float" to the right
  • How to apply a class to an image
  • How to prevent elements on your webpage from overlapping one another

By the end of this lesson you'll know how to code:

  1. The FLOAT attribute (in CSS, to make elements "float" to the right or left in your layout)
  2. The CLEAR attribute (in CSS, to make sure an element doesn't overlap any elements on the webpage)

How can you add more space inside and around DIVs on your webpage? In this lesson, you'll learn:

  • What the "box model" is in CSS
  • How to control the margins around something
  • How to control the padding inside a DIV
  • How to apply styles to specific images using #ID selectors in CSS
  • Some useful shortcuts when specifying margins and padding in CSS

By the end of this lesson you'll know how to code:

  1. The MARGIN attribute (in CSS, to specify the space surrounding something)
  2. The PADDING attribute (in CSS, to specify the space between the border of a DIV and the elements inside)
  3. The IMG selector (in CSS, to apply styles to images)

Getting fancy: Tweaking your webpage design

Our "Coming Soon" webpage is looking good, but it still needs a few more tweaks.

In our final few lessons, we'll learn how to use CSS to fine-tune the look of a webpage.


How do you make rounded corners using CSS? In this lesson, you'll learn:

  • How to think about rounded corners as being 1/4 of a circle
  • How to control the size of rounded corners using CSS

By the end of this lesson you'll know how to code:

  1. The BORDER-RADIUS attribute (in CSS, to create rounded corners)

How can you adjust the line spacing for the text on your webpage? In this lesson, you'll learn:

  • How to control the amount of space between lines of text using CSS
  • How to change the size of text inside specific DIVs

By the end of this lesson you'll know how to code:

  1. The LINE-HEIGHT attribute (in CSS, to control the space between lines of text)
  2. The FONT-SIZE attribute (in CSS, to control the size of text)

How can you change the color of a link and its behavior when you hover over it? In this lesson, you'll learn:

  • How to control the style of links located inside a specific DIV
  • How to use "pseudoclasses" to control the behavior of lines only under certain circumstances

By the end of this lesson you'll know how to code:

  1. The COLOR attribute (in CSS, to control the color of text)
  2. The A:HOVER pseudoclass (in CSS, to specify the style of a link when someone hovers their mouse over it)

How do you create a drop shadow effect using CSS? In this lesson, you'll learn:

  • How to remove temporary borders around DIVs
  • How to control the shading behind elements on your webpage

By the end of this lesson you'll know how to code:

  1. The BOX-SHADOW attribute (in CSS, to add shading behind an element)
  2. HORIZONTAL OFFSET, VERTICAL OFFSET, BLUR RADIUS, and RGBA values (in CSS, to control the shading behind an element)

How can you create a "dropped snapshot" effect using CSS only? In this lesson, you'll learn:

  • How to apply styles to a specific image (rather than all images on my webpage)
  • How to apply multiple classes to a single image in your HTML code
  • How to add borders to images
  • How to add a drop shadow behind images
  • How to control the space around an image with more precision
  • How to use shortcuts when setting margin values in CSS
  • How to rotate elements using CSS3
  • What vendor prefixes are, and how to use them
  • Why vendor prefixes won't typically validate (and why this is okay!)

By the end of this lesson you'll know how to code:

  1. The BORDER-WIDTH, BORDER-STYLE, and BORDER-COLOR attributes (in CSS, to control the border around an element)
  2. The BOX-SHADOW attribute (in CSS, to add shading behind an element)
  3. HORIZONTAL OFFSET, VERTICAL OFFSET, BLUR RADIUS, and RGBA values (in CSS, to control the shading behind an element)
  4. The MARGIN attribute (in CSS, to specific the amount of space around an element)
  5. The TRANSFORM attribute (in CSS3, to transform an element)
  6. The ROTATE value (in CSS3, to rotate an element a specified number of degrees)

Wrapping up

Wow, you did it! Our "Coming Soon" page is now complete!

If you need to review any of the code, download the project files provided in the "Downloadable Materials" section.


Good to know

Know what's good
, what to watch for
, and possible dealbreakers
Teaches two fundamental web development tools necessary for site creation, HTML and CSS
Strong fit for learners wanting to expand their knowledge and skill set in web development
Teaches best practices in HTML and CSS when designing websites
Course is multi-modal and includes videos, text, quizzes, and downloadable project files
May require learners to complete other courses first, as this is an introductory HTML and CSS course
Builds a strong foundation in HTML and CSS for beginner learners

Save this course

Save Step-by-step HTML and CSS for Absolute Beginners to your list so you can find it easily later:
Save

Activities

Be better prepared before your course. Deepen your understanding during and after it. Supplement your coursework and achieve mastery of the topics covered in Step-by-step HTML and CSS for Absolute Beginners with these activities:
Organize and prepare your materials
Organize and review your project notes, saved code, and any previous assignments as a refresher before beginning the course
Browse courses on HTML
Show steps
  • Gather your notes and materials
  • Review the course syllabus and schedule
  • Locate and review any previous assignments or exercises
  • Identify what topics you feel comfortable with and where you need extra help
Practice writing HTML and CSS code
Get ready to dive into the course with a brief warm-up to refresh your memory and practice writing HTML and CSS code
Browse courses on HTML
Show steps
  • Create a new HTML file and CSS stylesheet
  • Write some basic HTML and CSS code to create a simple webpage
  • Test your code in a web browser
Show all two activities

Career center

Learners who complete Step-by-step HTML and CSS for Absolute Beginners will develop knowledge and skills that may be useful to these careers:
Web Developer
Web developers use HTML, CSS, JavaScript, and other technologies to create websites and other web-based applications. Those with HTML and CSS skills can become web developers, and this course may be especially helpful for those without formal computer science training. The course starts with web basics and covers topics like best practices, troubleshooting, and writing semantic code, which are all important skills for web developers.
Front-End Developer
Front-end developers use HTML, CSS, and JavaScript to create the user interface of a website. Since this course teaches two of the three main technologies front-end developers use, it could serve as a great introduction or supplement to a front-end developer's learning. This course covers best practices, troubleshooting, writing semantic code, and even creating drop shadows, which are all useful things to know as a front-end developer.
Graphic designer
Graphic designers use visual elements to communicate ideas and solve problems. Since this course covers how to combine text, images, and colors in a webpage, it may be helpful for graphic designers who want to learn more about how these elements perform together on the web. The course also covers the basics of publishing a website, which is valuable to graphic designers who deliver work in a web-based format.
UI Designer
UI designers create the user interface of products and services. This course may be helpful to UI designers who want to learn more about web design and development. The course covers topics like layout, color theory, and typography, which UX designers also use in their work designing products and services.
UX Designer
UX designers research, design, and evaluate the user experience of products and services. This course may be helpful to UX designers who want to learn more about web design and development. The course covers topics like layout, color theory, and typography, which UX designers also use in their work designing products and services.
Webmaster
Webmasters manage all technical and non-technical aspects of a website. This course may be helpful to webmasters who want to learn more about HTML and CSS. The course covers topics like best practices, troubleshooting, and writing semantic code, which are important skills for webmasters to have in their arsenal.
Information Architect
Information architects design and organize the structure and content of a website. This course may be helpful to information architects who want to learn more about web design and development. The course covers topics like layout, typography, and writing semantic code, which information architects also use in their work designing and organizing websites.
Content Strategist
Content strategists plan, create, and manage content for websites and other digital platforms. This course may be helpful to content strategists who want to learn more about web design and development. The course covers topics like writing for the web, typography, and search engine optimization, which content strategists also use in their work planning and creating content for the web.
Digital Marketing Manager
Digital marketing managers plan and execute marketing campaigns using digital channels. This course may be helpful to digital marketing managers who want to learn more about web design and development. The course covers topics like search engine optimization, social media marketing, and email marketing, which digital marketing managers also use in their work planning and executing marketing campaigns.
Social Media Manager
Social media managers plan and execute social media marketing campaigns. This course may be helpful to social media managers who want to learn more about web design and development. The course covers topics like social media marketing, content creation, and community management, which social media managers also use in their work planning and executing social media marketing campaigns.
SEO Specialist
SEO specialists improve the visibility and ranking of websites in search engine results pages (SERPs). This course may be helpful to SEO specialists who want to learn more about web design and development. The course covers topics like keyword research, on-page optimization, and link building, which SEO specialists also use in their work improving the visibility and ranking of websites in SERPs.
Web Analytics Analyst
Web analytics analysts collect, analyze, and interpret data to measure the effectiveness of a website. This course may be helpful to web analytics analysts who want to learn more about web design and development. The course covers topics like web analytics, data visualization, and reporting, which web analytics analysts also use in their work collecting, analyzing, and interpreting data to measure the effectiveness of a website.
E-commerce Manager
E-commerce managers plan and execute marketing campaigns for e-commerce websites. This course may be helpful to e-commerce managers who want to learn more about web design and development. The course covers topics like e-commerce marketing, web analytics, and customer service, which e-commerce managers also use in their work planning and executing marketing campaigns for e-commerce websites.
Email Marketing Manager
Email marketing managers plan and execute email marketing campaigns. This course may be helpful to email marketing managers who want to learn more about web design and development. The course covers topics like email marketing, content creation, and campaign management, which email marketing managers also use in their work planning and executing email marketing campaigns.

Reading list

We've selected ten books that we think will supplement your learning. Use these to develop background knowledge, enrich your coursework, and gain a deeper understanding of the topics covered in Step-by-step HTML and CSS for Absolute Beginners.
Classic guide to web usability, covering everything from user experience to information architecture. It great resource for anyone who wants to learn how to create websites that are easy to use and navigate.
Classic guide to responsive web design, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to create websites that are responsive and work well on all devices.
Comprehensive and accessible guide to web design, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to create websites, regardless of their skill level.
Comprehensive guide to PHP, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to use PHP to create web pages or web applications.
Practical guide to web development, covering everything from HTML and CSS to JavaScript and PHP. It great resource for anyone who wants to learn how to create websites or web applications.
Practical guide to CSS, covering all the essential concepts and techniques. It great resource for beginners who want to learn how to style websites, as well as for experienced developers who want to improve their skills.
Comprehensive guide to mobile first web design, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to create websites that are optimized for mobile devices.
Comprehensive guide to the mobile web, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to create websites that are optimized for mobile devices.
Comprehensive guide to JavaScript, covering everything from the basics to advanced techniques. It great resource for anyone who wants to learn how to use JavaScript to create interactive and dynamic web pages.
Visually appealing and interactive guide to HTML and CSS, making it a great choice for beginners who want to learn how to create websites in a fun and engaging way.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Here are nine courses similar to Step-by-step HTML and CSS for Absolute Beginners.
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2024 OpenCourser