Some HTML, CSS Little Secrets In One Article

Written by wownetort | Published 2021/04/24
Tech Story Tags: programming | software-development | frontend | web | html | html5 | css | css3

TLDR Use HTTPS for embedded resources where possible. Use HTML5 (HTML syntax) for all HTML documents: <!DOCTYPE html>. Use HTTPS (https:) for images and other media files, style sheets, and scripts, unless the respective files are not available over HTTPS. The contents of a page title is very important for search engine optimization (SEO) Use the lang attribute inside the <html> tag, to declare the language of the Web page. This is meant to assist search engines and browsers.via the TL;DR App

Writing beautiful, understandable code is just as important as writing a production code. There are many different guides and guidelines on the Internet.
I tried to go through all of them and put together a little cheat sheet. I have included only those rules that affect the style of the code and cover most of the key points.
Hope you find this useful!

Overall

  1. Use HTTPS for embedded resources where possible. Always use HTTPS (https:) for images and other media files, style sheets, and scripts, unless the respective files are not available over HTTPS.
  2. Use UTF-8 (no BOM). Specify the encoding in HTML templates and documents via <meta charset="utf-8">. Do not specify the encoding of style sheets as these assume UTF-8.

HTML Style Rules

  1. Use HTML5. HTML5 (HTML syntax) is preferred for all HTML documents: <!DOCTYPE html>.
  2. Never Skip the <title> Element. The contents of a page title is very important for search engine optimization (SEO)! The page title is used by search engine algorithms to decide the order when listing pages in search results.
  3. Add the lang Attribute. You should always include the lang attribute inside the <html> tag, to declare the language of the Web page. This is meant to assist search engines and browsers.
  4. Provide alternative content for multimedia. For multimedia, such as images, videos, animated objects via canvas, make sure to offer alternative access. For images, that means the use of meaningful alternative text (alt) and for video and audio transcripts and captions, if available.
  5. Always define the width and height of images. This reduces flickering because the browser can reserve space for the image before loading.
  6. Omit type attributes for style sheets and scripts. Specifying type attributes in these contexts is not necessary as HTML5 implies text/CSS and text/javascript as defaults. This can be safely done even for older browsers.
  7. Close All HTML Elements
Bad example:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<title>Test</title>
<article>This is only a test.
<img src="html5.gif">
<link rel="stylesheet" href="https://www.google.com/css/maia.css" type="text/css">
<section>
<p>This is a paragraph.
<p>This is a paragraph.
</section>
Good example:
<!DOCTYPE html>
<html lang="en-us">
  <head>
    <meta charset="utf-8">
    <title>Test</title>
  <head>
  <body>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
    <link rel="stylesheet" href="https://www.google.com/css/maia.css">
    <article>This is only a test.</article>
    <img src="html5.gif" alt="HTML5" style="width:128px;height:128px">
    <section>
      <p>This is a paragraph.</p>
      <p>This is a paragraph.</p>
    </section>
  </body>
</html>

HTML Formatting Rules

  1. Indent by 2 spaces at a time. Don’t use tabs or mix tabs and spaces for indentation.
  2. Nested elements should be indented once (two spaces).
  3. Use only lowercase. All code has to be lowercase: This applies to HTML element names, attributes, attribute values (unless text/CDATA), CSS selectors, properties, and property values (with the exception of strings).
  4. Remove trailing white spaces. Trailing white spaces are unnecessary and can complicate diffs.
  5. Use a new line for every block, list, or table element, and indent every such child element. Independent of the styling of an element (as CSS allows elements to assume a different role per display property), put every block, list, or table element on a new line.
  6. When quoting attribute values, use double quotation marks. Use double ("") rather than single quotation marks ('') around attribute values.
Bad example:
<A HREF = "/">Home</A>
<a class='maia-button maia-button-secondary'>Sign in</a>
<ul>
<li>Fantastic<li>Great
</ul>
Good example:
<img src="google.png" alt="Google">
<ul>
  <li>Fantastic</li>
  <li>Great</li>
</ul>

CSS Style Rules

  1. Use meaningful or generic ID and class names. Instead of presentational or cryptic names, always use ID and class names that reflect the purpose of the element in question, or that are otherwise generic.
  2. Use ID and class names that are as short as possible but as long as necessary. Try to convey what an ID or class is about while being as brief as possible.
  3. Avoid qualifying ID and class names with type selectors. Unless necessary (for example with helper classes), do not use element names in conjunction with IDs or classes.
  4. Separate words in ID and class names by a hyphen. Do not concatenate words and abbreviations in selectors by any characters (including none at all) other than hyphens, in order to improve understanding and scannability.
  5. Use shorthand properties where possible. CSS offers a variety of shorthand properties (like font) that should be used whenever possible, even in cases where only one value is explicitly set.
  6. Omit unit specification after “0” values, unless required. Do not use units after 0 values unless they are required.
  7. Omit leading “0”s in values. Do not put 0s in front of values or lengths between -1 and 1.
  8. Use 3 character hexadecimal notation where possible. For color values that permit it, 3 character hexadecimal notation is shorter and more succinct.
  9. Prefer line comments to block comments.
  10. Prefer comments on their own line. Avoid end-of-line comments.
Bad example:
/* Not recommended: meaningless */
#yee-1901 {
padding-bottom: 2em;
padding-left: 1em;
padding-right: 1em;
padding-top: 0em;
}
/* Not recommended: does not separate the words “demo” and “image” */
.demoimage {
color: #ffffff
}
Good example:
/* Recommended: specific */
#gallery {
  padding: 0 1em 2em;
}

#login {
  font-size: .8em;
}

.demo-image {
  color: #fff
}

CSS Formatting Rules

  1. Alphabetize declarations. Put declarations in alphabetical order in order to achieve consistent code in a way that is easy to remember and maintain.
  2. Use soft tabs (2 spaces) for indentation.
  3. Indent all block content. Indent all block content, that is rules within rules as well as declarations, so to reflect hierarchy and improve understanding.
  4. Use a semicolon after every declaration. End every declaration with a semicolon for consistency and extensibility reasons.
  5. Use a space after a property name’s colon. Always use a single space between property and value (but no space between property and colon) for consistency reasons.
  6. Use a space between the last selector and the declaration block. Always use a single space between the last selector and the opening brace that begins the declaration block.
  7. Separate selectors and declarations by new lines. Always start a new line for each selector and declaration.
  8. Separate rules by new lines. Always put a blank line (two line breaks) between rules.
  9. Use single ('') rather than double ("") quotation marks for attribute selectors and property values.
Bad example:
.test {
display:block;
height:100px
}
a:focus, a:active {
position: relative; top: 1px
}
html {font-family: "open sans", arial, sans-serif;}
Good example:
html {
  font-family: 'open sans', arial, sans-serif;
}

h1,
h2,
h3 {
  font-weight: normal;
  line-height: 1.2;
}

.example {
  background: fuchsia;
  border: 1px solid;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: blue;
}
Useful links:
  1. Google HTML/CSS Style Guide
  2. w3schools HTML Style Guide and Coding Conventions
  3. Airbnb CSS / Sass Styleguide
  4. HTML CSS Code Guide by @mdo.
P.S. Thanks for reading!
More articles:
  1. Top Lesser Known HTML 5 & CSS 3 Tips and Best Practices
  2. Top 12 Lesser Known Tips for JavaScript Best Practices

Written by wownetort | 8+ years full-stack developer
Published by HackerNoon on 2021/04/24