|
You last visited: Today at 09:41
Advertisement
[HELP] Website
Discussion on [HELP] Website within the Web Development forum part of the Coders Den category.
04/23/2012, 22:26
|
#16
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
@Angellinho
Thanks. Didn't know that you got knowledge about websites coding, but g2k :3
|
|
|
04/23/2012, 22:42
|
#17
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
Mmyeah, i promise when I`ll not feel again that lazy I`ll make some templates for Conquer Online.
|
|
|
04/23/2012, 23:21
|
#18
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
|
Quote:
Originally Posted by .Kinshi
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
|
#19
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
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
|
#20
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
|
Quote:
Originally Posted by Angellinho
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
|
#21
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
Quote:
Originally Posted by turk55
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
|
#22
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
|
Quote:
Originally Posted by Angellinho
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
|
#23
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
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
|
#24
|
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
|
Quote:
Originally Posted by Angellinho
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
|
#25
|
elite*gold: 20
Join Date: Mar 2006
Posts: 6,126
Received Thanks: 2,518
|
Quote:
Originally Posted by turk55
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
|
#26
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
Was going to say what Korvacs just said...
|
|
|
04/25/2012, 18:18
|
#27
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
Quote:
Originally Posted by turk55
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
|
#28
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
Quote:
Originally Posted by Angellinho
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
|
#29
|
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
|
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
|
#30
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
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.
|
|
|
All times are GMT +2. The time now is 09:41.
|
|