Understanding HTML5 Semantic Tags
How to understand what semantic tags are and what they are used for.
How to understand what semantic tags are and what they are used for.
What is HTML? HTML stands for Hyper Text Markup Language. HTML is defined by elements or tags. Elements have an opening and closing tag while a tag or void or empty tag is just one tag without any content or a closing tag. These elements tell the browser how to display content on a webpage. … Read more
As I previously mentioned in one of my other posts, for educational purposes, you may comingle and use inline styling, with internal styling and external styling. However, in private industry and as a best practice measure you should only use external styling. With that said, if you do use all three stylings, you should understand … Read more
Some basic information on using CSS selectors and how CSS rules work.
HTML & CSS Basics in web development. Accessibility, reusability, and best practices.
What is a class? A class is a template that you build. From it, you will stamp out objects based on that class. In other words, think of a class as a blueprint for an object. What is an object? An object is something that you get from a class, sounds redundant doesn’t it? No, … Read more
This post explains the different types of CSS styling we have had. Additionally, it explains how precedence plays into resolving CSS conflicts between the different styles.
HTML FUNDAMENTALS Construct well-formed page markup Doctype -tag This tag provides information to the browser on what kind of document to expect. This tag is always the first tag in any HTML document. (DOCTYPE is not case sensitive and can be written in multiple ways) <!DOCTYPE html> HTML element or tag – is the root … Read more
HTML Fundamentals
Purchase a Certificate If you are interested in securing your site, and you are the administrator for the site, follow these steps. These steps are for creating and installing an SSL certificate on a Apache server. However, on other web servers it will be similar but I recommend looking for other documentation. One can purchase … Read more