Posts

Creating Tabs in Blogger

Image
In Blogger, there is no inbuilt option to create tabs. So we're using a tricky way to create tabs. It is actually Labels that are playing the role of tabs here and we're simply displaying those labels in the form of tabs. I think now you get the picture of what's going to happen here. I'll bring it down step by step.

Edit CSS in Blogger!!!

Image
Before getting started, let me introduce you to CSS. CSS is Cascading Style Sheets which is a style sheet language used for describing the look and formatting of a document written in a markup language. While most often used to change the style of web pages and user interfaces written in HTML and XHTML. Along with HTML and JavaScript, CSS is a cornerstone technology used by most websites to create visually engaging webpages, web applications and user interfaces for many mobile applications.

How to make a Blog!!!

Image
Blogging is Art. You'll get what I'm saying once you root yourself into blogging. Blogging enables you to post almost anything you want to share with the world. You can write a novel, your own short story or your autobiography. It could be anything as long as you want to share it. How to blog? First you need to have the need to create a blog. Start simple. There are free blogging sites all over the internet and here I've listed a few for you to try. And in this blog, I'm focusing on  Blogger  by Google. It's simple and easy to use. I mean all of them. The main purpose is to have something that belongs to you in the Internet. 1.  Blogger 2.  Penzu 3.  Square Space 4.  Svbtle 5.  Tumblr 6.  Webs 7.  Weebly 8.  Wix 9.  WordPress 10.  Blog

University of Moratuwa

Image
Faculty of Engineering ::: The Faculty of Engineering is the largest faculty in the University of Moratuwa, comprising 12 academic departments, over 200 academic staff and around 3500 undergraduate and post-graduate students. The Faculty at present offers Bachelor of the Science of Engineering degree in 9 disciplines, Bachelor of Design degree in Fashion Design and Product Development and Bachelor of Science degree in Transport and Logistics Management. In addition, the Faculty offers a large number of post-graduate degrees leading to Master of Science, Master of Engineering, Master of Philosophy, Master of Business Administration and Doctor of Philosophy.

Star Patterns in C

Two pyramids in two for loop When using two for loops separately inside the main for loop to create this pyramid, it takes a lot of memory and time to compile. So it is efficient in every way to use only one for loop and an if statement inside the main for loop. Output : * ** *** **** *** ** *

Bubble Sort

Bubble sort , sometimes referred to as sinking sort , is a simple sorting algorithm that works by repeatedly stepping through the list to be sorted, comparing each pair of adjacent items and swapping them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted. The algorithm gets its name from the way smaller elements "bubble" to the top of the list. Because it only uses comparisons to operate on elements, it is a comparison sort. Although the algorithm is simple, it is too slow for practical use, even compared to insertion sort.