
I guess this tool is better than any other HTML Editor found online or available as a software, or you can say the best tool available in the following ways,
- It works Offline in any browser available.
- Takes less than a fraction of a second to show live preview of your codes.
- It is even smaller than a peanut as its size is 1.63 KB.
- Code is saved in the browser if your computer accidentally shuts down.
- You can go back several times using Ctrl + Z and go forward using Ctrl + Y.
- Can be used to test a code for Cross Browser Compatibility!
- It is free of charge thanks to MBT! :D
Downloading Instructions
You can use this MBT Editor Both Online and Offline if you want.- Click this link –> MBT HTML Editor
- The MBT HTML Editor will open. Now you can start using it Online but to work offline in it you need to save it first. To save it, press Ctrl+U and then the source file will open up and then copy all the codes from there and then paste in a notepad and save it as HTML Editor.html ( .html is important)
- Done!
Instructions For Using MBT HTML EDITOR
This tool consists of two panes i.e left pane and right pane. See a screen shot below,
The left pane is the area where you add your CSS and HTML codes and the right pane is the area where a visual view of the code is displayed. The CSS code is added just between <style> and </style> and the HTML code is added just below </style>.
Note:- Where it is written Add Here it means Add HTML Code Here
Note:- Where it is written Add Here it means Add HTML Code Here
Playing With A Code
Lets now play with a code using our HTML Editor. I am using the easy Image Opacity Effect Trick here as an example,The CSS code for Opacity Effect looks like this,
img {Now to apply this effect to an image we will need an HTML code as shared below,
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
border:0;
}
img:hover {
filter:alpha(opacity=30);
-moz-opacity: 0.30;
opacity: 0.30;
border:0;
}
<img class="Fadein" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjsqB9nV7kb4uCPgvqxfCWmYJiM-DXAQyNBrPDYcuxBrLIkbowDMhn0w6zwp2ioSov86vsbaIdK08FqKGzvdseHgGqueeW1zbx78eGXZRX6qckG5Ev_ZGDlxYfB4fKSpV43igDJM0OJO7h-/s400/DIGG.png">
Now The best part, add the CSS code just between <style> and </style> and the HTML code just below </style>. Hit the Preview button and watch the dancing code in action in front of your eyes. You can now start the play!
See this screen shot,
Some Important Tips:-
- To go backward to previous changes, click Ctrl + Z
- To go forward to last changes made, click Ctrl + Y
- Once you are happy with the code that you prepared then simply paste the CSS code just above ]]></b:skin> inside your blogger template and the HTML code where you want the effect to be seen i.e post or sidebar
0 comments:
Post a Comment