@Angellinho
Thanks. Didn't know that you got knowledge about websites coding, but g2k :3
Thanks. Didn't know that you got knowledge about websites coding, but g2k :3
<htmltag style="cssproperty1: value; cssproperty2: value;"> </htmltag>
OrQuote:
That one, <h4> Dog, Cat, Wolf </h4> is not. :)
And the correct syntax for inline css is like:
HTML Code:<htmltag style="cssproperty1: value; cssproperty2: value;"> </htmltag>
No, that`s embedded style. It`s embedded in the head of the document and affect only the following document where it is embedded in.Quote:
Or
<style type="text/css">
body {
background-color: black;
}
</style>
but i like to keep anything that can be done in css out of my html
the part with the embed was an extra part of your previous postQuote:
No, that`s embedded style. It`s embedded in the head of the document and affect only the following document where it is embedded in.
The one you like, it`s external, <link rel="stylesheet" type="text/css" href="...
Its become fairly evident over the course of this thread that you dont know web development, or 'webprogramming' as you call it.Quote:
You just don't want to understand me do you ? lol, ik webprogramming dw.
You know, such as I know to play Minesweeper...ie bad.Quote:
You just don't want to understand me do you ? lol, ik webprogramming dw.
<a href="" style="text-decoration: none;">
<style type="text/css"> h1 { color: #FFF; }</style>
<link rel="stylesheet" type="text/css" href="turk55.css" />
Embedded CSS and Inline CSS is the same.Quote:
You know, such as I know to play Minesweeper...ie bad.
INLINE CSS:
EMBEDDED CSS:HTML Code:<a href="" style="text-decoration: none;">
EXTERNAL CSS:HTML Code:<style type="text/css"> h1 { color: #FFF; }</style>
HTML Code:<link rel="stylesheet" type="text/css" href="turk55.css" />