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

Deep-sea Anglerfish Black Seadevil Scary looking creature Video

Deep-sea Anglerfish are the strange and elusive creature that are very rarely observed in their natural habitat. Fewer than half a dozen have ever been captured on film or video by deep-diving research vehicles.They are mostly  found in tropical to temperate waters of the Indian,Pacific and Atlantic Oceans.

How to use WiFi adapter on Ubuntu 16.04 desktop PC - Realtek RTL8188EUS 802.11n Wireless USB Network Adapter Driver installation

Installation of Realtek RTL8188EUS 802.11n Wireless USB Network Adapter on Desktop PC having Ubuntu 16.04 OS My PC is running in Ubuntu 16.04 OS, recently I thought of using a dongle wife adapter to access our home's Wifi network. For this I used Realtek RTL8188EUS 802.11n Wireless USB Network Adapter ( Model No: OT-WUA950NM ) This small device cost around Rupees 250/- to Rs 300/- in India. I did the following steps for installation of this Realtek Nano Wifi Adapter: Plug Realtek RTL8188EUS 802.11n Wireless USB Network Adapter to your PC's USB port, Take the terminal application and run the command "lsusb" to list the plugged in usb devices: Myhome:~$ lsusb Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. R...

Cheap Tourist boat service in Alapuzha - Enjoy the beauty of Aleppey Back waters using govt owned Tourist boat services

Feasible Tourist boat services in Alapuzha Aleppey / Alappuzha is one of the beautiful places in kerala. Aleppey district is famous for it amazing backwaters , you can enjoy house boat rides here. Kerala State Water transport department  (Kerala SWTD) provides facilities for tourists to enjoy the beauty of backwater by paying much less charge when compared to private boat services. There are boat services from Aleppey boat station which takes tourists to inner parts of the backwaters.


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