Is it possible to include CSS in html

Joe S.

Member
Registered
Joined
Jul 12, 2014
Messages
61
Points
0
I am working out on a web design project with a friend.

I was wondering is it possible to enter CSS in HTML

Heard first time. I think no !!

But let me know if possible and how exactly.
 

TeoC NETCreator

Member
Registered
Joined
Jul 11, 2014
Messages
18
Points
0
SSD or SSD Cached

Yes, it is possible.

Method 1

You could create a css file (example.css) and you can include it in your HTML file between
HTML:
<head> </head>
, with:
Code:
<link rel="stylesheet" type="text/css" href="example.css">
(If the css file is not located in the same folder as your HTML file, you must write the entire path on ...href="PATH OR ENTIRE URL TO/example.xss"... in above code.

Method 2

You can add your css code directly in your HTML file

HTML:
<style>
WRITE HERE YOUR CSS STYLE CODE
</style>
(Recommend: place it between
HTML:
<head> </head>
)

Method 3

On each element from your HTML, you can add a css style. For example, let's say that you have a div:

HTML:
<div>My text...</div>
You can style it with css:

HTML:
<div style=" ADD HERE THE STYLE - I.E: color: blue; font-weight: bold; ETC ">My text...</div>
The same as above applies to all: <span>, <p> etc.
 
Older Threads
Replies
1
Views
3,251
Replies
2
Views
2,514
Replies
5
Views
3,479
Newer Threads
Replies
6
Views
3,736
Replies
4
Views
2,731
Replies
2
Views
3,143
Replies
1
Views
2,421
Recommended Threads

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top