Categories
Css

3 ways to add CSS to your web sites

Website can not be completed without any style. So you apply CSS. When a browser reads a CSS style sheet, this formats the HTML document according to the information in the CSS style sheet. With 3 basic ways you can add CSS in your web pages:- 1) Link your webpage with an external file: <link […]

Categories
Css

CSS Image Sprites

Image sprite is nothing but a collection of images put into a single image. When web page loads then for a particular location we show particular position of a image. For multiple images it takes time to load on a server. That is why we use single image for multiple position to save bandwidth. In […]

Categories
Html

Meta Tags in HTML

This is meta information about your html document. It is not visible to the browser. For SEO purpose meta tags are used and written between head tags. Meta Tags: <head><meta name=”keywords” content=”Html, Web design, Meta tags”><meta name=”description” content=”This is html meta tags description”></head> Besides this lots of meta name are available.

Categories
Css3

Rounded Corners in CSS

This below content gives you an idea how to make cross-browser compatible rounded corners with CSS. Example of Rounded Corners: <!DOCTYPE html> <html> <head> <style> .roundCorner{ background: #C2C2C2; border-radius: 25px; border: 3px solid #C2C2C2; padding: 15px; width: 150px; height: 150px; } </style> </head> <body> <div class=”roundCorner”>Rounded corner div!</div> </body> </html>

Categories
Css3

A Little Known CSS Facts

As you have been writing css for several years day by day you are getting new things that you have never used previously. Each and every well trained front-end developer feature-tests before using any features which a browser may not have. This feature testing has always done with scripting, and most of the people use […]

Categories
Html

Element Structure of HTML

HTML documents consists of multiple element structure which includes start tag, attribute, body element, end tag etc. Element Structure: The main tag of HTML is <html> and </html> which is start tag and end tag.The content element is written between two tags i.e. body tag.For example, <p>Hello there!</p> Few HTML elements have no body i.e. […]

Categories
Feature Story Technology

AI Research Writers: Are They Game Changers or a Threat to the Academia?

Artificial Intelligence has become a significant part of our daily lives and has successfully automated hundreds of our day-to-day activities. Recent AI developments have entirely transformed the landscape in the field of thesis research and writing. AI research writers have changed the game of thesis research and writing. AI-powered programs such as ChatGPT have relieved […]

Categories
Html

HTML 4

HTML is basically a language on the internet for website. It basically consists of multiple pages where each pages written in .html extension. Currently the latest version is HTML5 where new elements are added. It is the abbreviation of Hyper text markup language that means you can embed links inside the text. When click on […]

Categories
Html5

HTML5 – Tips & Tricks

HTML5 has a lot of new tools to build website for better user experience and it is strong and powerful version of HTML. For Mobile phone applications it is used to a very great extent. Here are some tips and tricks for HTML5 HTML <!DOCTYPE> Declaration:The <!DOCTYPE> declaration is the first tag in your HTML […]

Categories
Business Feature Story

Things You Should Know Before Starting Your First Brand Identity Project

Is it accurate to say that you are in all-out startup mode? Perhaps a little overpowered by all that you have to do to before your brand welcomes the world? Is “business branding” one thing on your agenda that you aren’t sure how to handle? Distinctive brand identity captivates, resonates, and defines, forging lasting connections […]