Is it possible to include CSS in html

Joe S.

New member
Joined
Jul 12, 2014
Messages
84
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.
 
Joined
Jul 11, 2014
Messages
40
Points
8
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
4
Views
5,160
Replies
3
Views
6,156
Replies
2
Views
3,930
Newer threads
Replies
6
Views
5,797
Replies
4
Views
4,206
Replies
4
Views
5,000
Replies
0
Views
6,017
Latest threads
Replies
0
Views
41
Replies
2
Views
140
Replies
0
Views
135
Replies
2
Views
233
Recommended threads
Replies
5
Views
3,254
Replies
6
Views
4,343
Replies
6
Views
5,540
Top