Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Web Development
You last visited: Today at 09:41

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[HELP] Website

Discussion on [HELP] Website within the Web Development forum part of the Coders Den category.

Reply
 
Old 04/23/2012, 22:26   #16
 
×Holo's Avatar
 
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
×Holo is offline  
Thanks
1 User
Old 04/23/2012, 22:42   #17
 
Angellinho's Avatar
 
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.
Angellinho is offline  
Old 04/23/2012, 23:21   #18
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
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
turk55 is offline  
Old 04/23/2012, 23:45   #19
 
Angellinho's Avatar
 
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>
Angellinho is offline  
Old 04/24/2012, 19:32   #20
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
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
turk55 is offline  
Old 04/24/2012, 21:46   #21
 
Angellinho's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
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="...
Angellinho is offline  
Old 04/24/2012, 22:41   #22
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
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
turk55 is offline  
Old 04/25/2012, 00:17   #23
 
Angellinho's Avatar
 
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.
Angellinho is offline  
Old 04/25/2012, 15:28   #24
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,655
Received Thanks: 706
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.
turk55 is offline  
Old 04/25/2012, 16:05   #25


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,126
Received Thanks: 2,518
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.
Korvacs is offline  
Old 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...
I don't have a username is offline  
Old 04/25/2012, 18:18   #27
 
Angellinho's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 25
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" />
Angellinho is offline  
Old 04/25/2012, 19:05   #28
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
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.
I don't have a username is offline  
Old 04/25/2012, 22:01   #29
 
Angellinho's Avatar
 
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.
Angellinho is offline  
Old 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.
I don't have a username is offline  
Reply




All times are GMT +2. The time now is 09:41.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.