[HELP] Website

04/23/2012 22:26 ×Holo#16
@Angellinho
Thanks. Didn't know that you got knowledge about websites coding, but g2k :3
04/23/2012 22:42 Angellinho#17
Mmyeah, i promise when I`ll not feel again that lazy I`ll make some templates for Conquer Online.
04/23/2012 23:21 turk55#18
Quote:
Originally Posted by .Kinshi View Post
No, that's an HTML tag, not CSS.
i have been taught that every mark up styles in html is part of inline css.
so like <font color="red"></font> etc is part of inline css
04/23/2012 23:45 Angellinho#19
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>
04/24/2012 19:32 turk55#20
Quote:
Originally Posted by Angellinho View Post
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>
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
04/24/2012 21:46 Angellinho#21
Quote:
Originally Posted by turk55 View Post
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
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="...
04/24/2012 22:41 turk55#22
Quote:
Originally Posted by Angellinho View Post
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="...
the part with the embed was an extra part of your previous post
04/25/2012 00:17 Angellinho#23
I didn`t. I just used as example to show you, inline css. Oh, and external on that rules page which I used tiny ajax. I used no embedded css.
04/25/2012 15:28 turk55#24
Quote:
Originally Posted by Angellinho View Post
I didn`t. I just used as example to show you, inline css. Oh, and external on that rules page which I used tiny ajax. I used no embedded css.
You just don't want to understand me do you ? lol, ik webprogramming dw.
04/25/2012 16:05 Korvacs#25
Quote:
Originally Posted by turk55 View Post
You just don't want to understand me do you ? lol, ik webprogramming dw.
Its become fairly evident over the course of this thread that you dont know web development, or 'webprogramming' as you call it.

The H1-6 tags have been standardized parts of HTML since 1995, it is not an inline style, nor is it inline css, it has a default standardized format in the same way that P has a default standardized format, and that is definitely neither a style nor inline css.
04/25/2012 16:35 I don't have a username#26
Was going to say what Korvacs just said...
04/25/2012 18:18 Angellinho#27
Quote:
Originally Posted by turk55 View Post
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.

INLINE CSS:
HTML Code:
<a href="" style="text-decoration: none;">
EMBEDDED CSS:
HTML Code:
<style type="text/css">
h1 { color: #FFF; }</style>
EXTERNAL CSS:
HTML Code:
<link rel="stylesheet" type="text/css" href="turk55.css" />
04/25/2012 19:05 I don't have a username#28
Quote:
Originally Posted by Angellinho View Post
You know, such as I know to play Minesweeper...ie bad.

INLINE CSS:
HTML Code:
<a href="" style="text-decoration: none;">
EMBEDDED CSS:
HTML Code:
<style type="text/css">
h1 { color: #FFF; }</style>
EXTERNAL CSS:
HTML Code:
<link rel="stylesheet" type="text/css" href="turk55.css" />
Embedded CSS and Inline CSS is the same.
04/25/2012 22:01 Angellinho#29
Embedded styles are styles that are embedded in the head of the document. Embedded styles affect only the tags on the page they are embedded in.
Inline styles are styles that are written directly in the tag on the document. Inline styles affect only the tag they are applied to.
04/25/2012 22:58 I don't have a username#30
Inline css is also embedded css FYI, but doesn't really matter. It's gay to use anyways. Only people from 1987 would use it, if you know what I mean LOL.