CSS Border Basics Here are some basics border examples for html elements.
H1 Heading with solid line border: H2 Heading with dotted line border: H3 Heading with thick double line border: H4 Heading with 1rem Solid border H5 Heading with Ridge border
HTML Cheat Sheet Note: Content refferenced from: developer.mozilla.org.
Do check it out. It’s one of the best sources for learning HTML
The Basics: First thing to know is page structure. HTML Element
<html></html> The html element represents the root or Top-level element of an html document. This is also reffered to as the root element. ALL other elements must be decendence of this element. This follows the <head> element.
A Quick guide to change the Background image in Ubuntu Disco
Markdown basics Here is a quick quide on some basics in markdown for particular situations when writing up documentation.
Code syntax For when you want to document code within a markdown page you can do so in a couple of ways.
Block-quotes For situations where only a single line is the focus, and code/syntax highlighting isn’t required, block-quotes can be handy. Block quotes only require a starting ‘>’ character, and the code follows.
Virtaulize your Environment When managing or just simply creating new projects, it can easily become a chore installing/uninstalling dependencies or libraries depending on what your project will be trying to solve. This process will soon break your package repo’s, or at the very least, cause alot of wasted time, sorting out broken dependencies.
Enter the idea of Virtaul Environments (From the Software develpment viewpoint, atleast).
This is the concept of keeping your projects seperate, and contained, while holding all there unique and specific dependencies and libraries to themselves, away from the rest of your projects and global environment settings.