Category: HTML Absolute Begginner

  • HTML Cheat Sheet

    If you are pretty confident in your HTML abilities but sometimes feel like double-checking your work then look no further than our HTML cheat sheet. This handy guide will show you everything you need to know about HTML in a super-compact, and easy-to-understand format. It provides information on particular tags and specific attributes in an alphabetized format. You can bookmark the…

  • HTML Attributes Reference Guide

    The HTML attributes section is designed to allow you to get up close and personal with the HTML attributes that you know and love while introducing you to some advanced attributes along the way. Our most popular attributes include: <img src=””> — Learn how to pick the image to display. <img alt=””> — This sets the name of the image for those who can’t see the…

  • HTML Reference Guides

    Meanwhile, our detailed HTML tags reference lets you find out more about every single HTML tag from <a> to <xmp>. Each tag reference includes background and examples, which show how to use the tag in question. It’s perfect for when you want to troubleshoot problems while coding HTML. Below are some of the most common tags — used by nearly every website you…

  • Intermediate & Advanced Tutorials

    We’ve plenty of topics for intermediate and advanced HTML learners, too: CSS tutorials CCS, Cascading Style Sheets, allow you to design and ornament your web pages. This tutorial takes you from the beginning to being fluent in CSS so that you can create complex pages that are easily maintained. JavaScript JavaScript is arguably the most important web coding language…

  • Our Other HTML Tutorials

    Our HTML tutorials teach you how to create a personal website or site for your business, without forcing you to learn unnecessary theory. Our most popular beginner’s tutorials include: HTML tables These tutorials guide you through the process of creating tables for your exact needs. Tables were once the primary means by which pages were laid out.…

  • Troubleshooting

    In case things didn’t work out as intended, simply check your HTML code against the examples below. Index.html troubleshooting code: page2.html troubleshooting code:

  • How To Close an HTML Document

    You’ve reached the end of our absolute beginners HTML tutorial. The final step we need to complete is to close the <body> and <html> tags at the end of each page using the following HTML code: In this guide, you’ve learned how to create basic HTML web pages. You’ve also learned to add headings, text, images,…

  • How To Add Tables In HTML

    Another way to keep your website looking neat and orderly is through the use of a table. Do not use a table to layout your website. Search engines hate it and it is generally a bad idea. Just… don’t. See our CSS tutorial, instead. This is definitely the most complicated part of this tutorial, however, learning it will…

  • How To Make an HTML List

    In web design, there are 3 different types of lists which you may wish to add to your site. Ordered List The first is an <ol>: This is an ordered list of contents. For example: Inside the <ol> tag we list each item on the list inside <li> </li> tags. For example: Unordered List The second type of list that you may…

  • How To Add Images In HTML To Your Website

    In today’s modern digital world, images are everything. The <img> tag has everything you need to display images on your site. Much like the <a> anchor element, <img> also contains an attribute. The attribute features information for your computer regarding the source, height, width and alt text of the image. Styling and Formats You can also define borders and other styles around the image using the class…