Skip to main content

Posts

White blue sky

#hometown#theni Sometimes you have no reason to stay, and realize that's a perfect argument to go. And that taking an entirely new way, is the sore but single method to grow. If you're washed-on abeyance's bight, and you feel decision's heavy heft: To choose the left where nothing's right, or go to the right where nothing's left.

When there is.... It matters!

When there is no wind... It matters to see a tree dance! When there is no way home... It matters to keep a thin memory! When there is no light... It matters to keep a lighter! When there is no sweetheart... It matters by surrounded with friends! When there is no sweet memory to remember... It matters to create them by own! When there is no achievement... It matters to grab an opportunity! When there is no plan... It matters to hit hard the goal! When there is a heart... It matters to keep it unbroken! When there is  no knowledge... It matters to get rich! When there is no path... It matters to keep thoughts clear! When there is   no hope... It matters to keep motivated! When there is no life... It matters to remember YOU ARE THE LIFE

Habits we should have to be a Successful Developer

Success is not an easy road trip, It is like mountain climbing. To make it we should be passionate and should be ready to go to any extent to improve ourselves. In the software development industry, We need to be good at certain habits even we have to change the very core of our habits, We should be prepared for that. The most impactful habits of successful developers that we can follow to reach the top of our career are listed below. 1. Thinking about the user point of view at all the time of end product We can't simply build something which is hard to understand for the user, and not giving a pleasant feel while they are using our end product. It is more important to set a clear goal of what you really want at the end of your project. 2.Paying attention to details Nobody can tell you that to write a perfect code or to complete a project successfully, We need to pay attention to the details of the client requirement and work accordingly. Nobody likes to work on a piece of code aga...

Font-awesome Installation in Angular app.

 Font-Awesome + Angular using NPM Why NPM? Whenever we need a package in our Angular application, we'll be using npm to bring in the package. This is the way the Angular ecosystem is working. We need lots of packages to build something greater. Installing Font-awesome: This will bring the entire Font-awesome into our node_modules folder. The --save flag will add this dependency to our package.json Add Font-awesome in Angular app: For Angular applications, all starting configuration happens in the angular.json file. In that file, you'll find a styles array where we can add any CSS files we want to add to our project. You'll also find a script array where you can add scripts if you need that. ( Refer here for including Jquery and Bootstrap and here for Bulma CSS ) Restart the angular server (ng serve). Now you can able to use all the incredible icons of Font-awesome in your Angular application. 

Bulma Installation in Angular app.

Bulma + Angular using NPM Why NPM? Whenever we need a package in our Angular application, we'll be using npm to bring in the package. This is the way the Angular ecosystem is working. We need lots of packages to build something greater. Installing Bulma: This will bring the entire Bulma project into our node_modules folder. The --save flag will add this dependency to our package.json Add Bulma in Angular app: For Angular applications, all starting configuration happens in the angular.json file. In that file, you'll find a styles array where we can add any CSS files we want to add to our project. You'll also find a script array where you can add scripts if you need that. ( Refer here for including Jquery and Bootstrap ) Restart the angular server ( ng serve ). Now you can able to use all the incredible features of Bulma CSS in your Angular application.  Let's make something awesome with Bulma.

How to View HTML Source?

 If you are wondering how did a developer do something awesome on a web page, there is a way to see how they built that. View HTML Source Code: Right-click on an HTML page and select "View Page Source" (in Chrome) or "View Source" (in Edge), or similar in other browsers. This will open a window containing the HTML source code of the page. Inspect an HTML Element: Right-click on an element (or a blank area), and choose "Inspect" or "Inspect Element" to see what elements are made up of (you will see both the HTML and the CSS). You can also edit the HTML or CSS on the fly in the Elements or Styles panel that opens.

HTML Basics

 Here we will see some HTML examples, Forget about the tags you have not learned yet. HTML Document: All HTML documents start with a document-type declarations : <!DOCTYPE html> A HTML document itself begins with <html> and close with </html> The visible part of the web page will be <body> and </body> The <!DOCTYPE> Declaration: The <!DOCTYPE> declaration represents the document type and helps browsers display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). The <!DOCTYPE> declaration is not case sensitive. HTML Headings: HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading. HTML Paragraphs: HTML paragraphs are defined with the <p> tag HTML Links: HTML links are defined with the <a> tag. The link's destination is specified in the href attribute. . Attributes are used ...