Skip to main content

How to add style sheet to an HTML page - Adding CSS to a web page - Cascading Style Sheets - External CSS - Inline Style Sheets - Internal Style Sheet - Jquery CSS

How to add style sheet to an HTML page - Adding CSS to a web page

First of all What is CSS or Cascading Style Sheet?
In Simple, we can describe it as a set of Style that is used to format a web page. Applying Style will give site a better user friendly look.

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in HTML and XHTML.

There are basically 5 ways to add CSS to an HTML page

External CSS File Include
First Method is to add an externl CSS file to your web page.
A simple css file may look like

-----
-----
.txt{ color:#ffffff; font-size:14px }
.txt2{ color:#000000; font-size:12px }
-----
-----


the above style statments is saved in a file called mystyle.css

How to include the external CSS file?

In Your HTML file inside the HEAD tag place the following tag:

<link rel="stylesheet" type="text/css" href="mystyle.css" />

How to apply style to a HTML control?

Just refer the style name in CLASS attibute of your HTML control like given below:

<input type="text" class="txt" />




Internal Style Sheets Include
Including an internal style is simple, just add your styles in the STYLE tag, Place the STYLE tag above the closing head tag

Check this example:

-----
<html>
<title> PHP Techi Web Page </title>
<head>
<style>
.txt{ color:#ffffff; font-size:14px }
.txt2{ color:#000000; font-size:12px }
</style>
</head>
<body>
--------
--------
--------
</body>
</html>



How to apply style to a HTML control?

Just refer the style name in CLASS attibute of your HTML control like given below:

<input type="text" class="txt2" />




Inline Style Sheets Include
Inline Style Sheets - the name itself says what it does,here we just add styles in the STYLE attribute of HTML controll

Check this sample script:

<input type="text" class="txt2" style="color:#cccccc;font-size:10px" />


Applying Styles using Javascript
You can apply CSS using Javascript. Suppose you want to change the color of your Submit button Text when you click on it. You can do this just by calling a Javascript function during the OnClick Event of the button. In the JS function there will be script to change the background color of your button.

Check this sample script:


<script>
function changeColor(){
document.getElementById("myinputbox").style.color='red';
}
</script>
-------
-------
-------
-------
<input id="myinputbox" type="button" style="color:#cccccc;font-size:10px" onClick="changeColor();" />




How to change the Style Class of an HTML element using Javascript?

You can change the applied style class of an element using JS, here is how it works



<head>
<style>
.txt{ color:#ffffff; font-size:14px }
.txt2{ color:#000000; font-size:12px }
</style>


<script>
function changeStyleClass(){
document.getElementById("myinputbox").className='txt2';
}
</script>

</head>
-------
-------
-------
-------
<input id="myinputbox" type="button" class="txt" onClick="changeStyleClass();" />


In the above example the button control is using the style class "txt", on clicking the button it calls a JS function "changeStyleClass()" which changes the style class of the button to "txt2". Please not the keyword "className".


Applying Styles using JQuery
jQuery css() Method - The css() method sets or returns one or more style properties for the selected elements.
The following example will set the background-color value for ALL P tags:


$("p").css("background-color","yellow");





Reference:
Wikipedia
w3schools
JQuery and CSS

Comments

Popular posts from this blog

How to delete videos from your Youtube Watch History list?

How to Delete Individual or all videos from your Youtube Watch History list? Youtube keeps a fine record of the videos that you had watched earlier. You can view this by visiting the History section. If you want to remove the video's from the list do the following: Logon to Youtube and click on the "History" tab on the left menu to view Watch History ( Read more ) There will be check boxes corresponding to each video in the list Tick the check boxes of the videos which you want to remove Click on " Remove " button to delete the videos.

How to add "Link to this page" option under blogger posts?

Steps in adding Link to this page to your blogger posts Links to your page can improve your page rank. So it is a good option to add HTML code for linking to your web page. So that reader can copy and paste it on their web page. if another website links to your web page, this is considered an external link to your website. External links to your website are the most important source of ranking power and in SEO terminology it is considered as third party ranking vote for your page.

Intex Aqua 5.5 VR Plus genuine Review - Dont Buy Intex Aqua 5.5 VR Plus - Board complaint and low battery backup issues

Intex Aqua 5.5 VR Plus  Review - Dont Buy Intex Aqua 5.5 VR + - Board complaint and low battery backup issues I bought an Intex Aqua 5.5 VR Plus on April 23, 2018, With in a week it started to show Battery backup issues. Even if it is charged full, it will completely drain out with in 12 or 13 hours. During this time No internet was used, only 2 or 3 calls were done. Some times there was issues with net connection also.


Urgent Openings for PHP trainees, Andriod / IOS developers and PHP developers in Kochi Trivandrum Calicut and Bangalore. Please Send Your updated resumes to recruit.vo@gmail.com   Read more »
Member
Search This Blog