Now Reading
Cheat Sheet Coding
0

Cheat Sheet Coding

by Design SyncDecember 13, 2015

As we learn more and more our memory capacity gets full, out of memory to remember some of the things we don’t regularly use. There might be a point in time which we will be ask to do something simple that we already knew but blank minded it’s not in our head. Hence creating a blog or a cheat sheet for yourself for future reference may help you and save a lot of time. It’s not hard to note down these important information to keep for later use. You don’t need to share it with everyone. Here is just a cheat sheet of the coding and link references which I often refer back to. It saves me a lot of time rather than always going back to Google to do a search.

HTML5

Invisible Spacer:
 
Stands for No-break space

Div Tags:
<div style=”height: 12px; vertical-align: middle; float: left; width: 120px; margin: 12;”>
<strong>Direct on the page with tags:</strong>
<div style=”clear: both;”>

Image Tags:
<img src=”name-of-file.jpg” alt=”Place your Alt text here.” />

Font Tags:
<font size=”3″ color=”red”>Place your text here.</font>
<font size=”2″ color=”blue”>Place your text here.</font>
<font face=”verdana” color=”green”>Place your text here.</font>

 

 

Leave a Response