Skip to main content

Adding CSS to HTML (URDU / HINDI) Tutorial


There are three ways to incorporate, embed or attach CSS with HTML web page:
1 - Inline CSS
2 - Internal CSS
3 - External CSS
All of the above methods have their own specific syntax and implementation. 

Inline CSS

Inline CSS is added as an attribute to any HTML element. The name of the attribute is style.
It is added like this:
<div style=" "></div>
In the inverted commas, you have to enter the property-value pairs, like this:
<div style="color: red"></div>

Internal CSS

Internal CSS is added as an HTML element under the HEAD tag of HTML web page. The name of the element is <style>.
It is added like this:
<html>
<head>
<style>
h1 {color: red;}
</style>
</head>

External CSS

External CSS is added as an HTML element under the HEAD tag of HTML web page. The name of the element is <link>.
It is added like this:
<html>
<head>
<link href="css/style.css" rel="stylesheet>
</head>
The location/address of your CSS file is entered in the href of the LINK element.

Comments

Popular posts from this blog

Design Organized Website Structures

When developing a website, you must proactively decide its structure before starting the coding. But what does the Web Structure mean at the very first place? Website Structure can be defined as follows: When you talk about the structure of a website, you are talking about its components , their working , their location , their inter-dependency , and their interaction with the user. The design of the Website Structure does not include code. Generally, the design includes, wire frames, sketches, mock ups, lists, flow charts and other visual aids. What is a component? Well, it can be defined as follows: Components are the useful or functional parts of a website Every component has a particular purpose and function. For example, navigation bar of a website has a purpose of providing navigation links to the user. But some, components are versatile and have multiple purposes. For example, a header of website can contain a navigation bar, a search bar, a login form

Marketing your Website without UX is Marketing your Shop that does not have Doors

You read it right. You are telling the world that you have got a website that do wonders and magic for your 'valuable' customers, and when that valuable customer visits your website they are unable to find dunk out of it. Pardon my words, but this is how most people are doing marketing of their websites and web applications. If this is how you are going to do it, then it's better not to do it at all. I always remind my team, marketing begins when your development and design team starts working on your website; it does not start when you start the marketing campaign. The reason: when you announce that you have a website, please visit my website, get benefited from my website before its too late, and all those fancy catchy lines you use for your website, then you better make sure that when your customer visits your website they are able to explore and enjoy your website instead of feeling lost and finally frustrated. If you are not taking care of the user experience of your

How Bootstrap Works Easy Introduction Frontend Development

In this tutorial, we will understand the basic concept of bootstrap, how to use it with HTML to make websites. Company: http://www.webdevelopmentlabs.com