| |  | 
06-27-08, 04:57 AM
|  | DNL Enthusiast | | Join Date: May 2008 Location: RP
Posts: 375
| | Re: Tutorial of Web design
These tutorial are very useful and helpful. Thank you and good luck!
| 
07-31-08, 10:32 AM
| | DNL Member | | Join Date: Jul 2008
Posts: 26
| | Re: Tutorial of Web design
I need a tutorial in CSS coding..
Can you give me a hand on this??
I cant find reliable sources recently, maybe you can help me..
__________________
What's the taste of fashion. Give it better image.
| 
08-04-08, 09:03 AM
| | DNL Member | | Join Date: Jul 2008
Posts: 26
| | Re: Tutorial of Web design
I need a tutorial either. I will use what you posted ok? Thank you..
__________________
What's the taste of fashion. Give it better image.
| 
08-08-08, 11:32 AM
| | DNL Newbie | | Join Date: Aug 2008
Posts: 4
| | Re: Tutorial of Web design
Thank you for the information. I tried to search that kind of site.
| 
08-11-08, 08:39 AM
|  | DNL Member | | Join Date: Jul 2008
Posts: 90
| | Re: Tutorial of Web design
wow..thanks for that rayver that was helpful. I hope that you have more to help to us newbies | 
08-11-08, 10:59 PM
|  | DNL Enthusiast | | Join Date: Apr 2008
Posts: 450
| | Re: Tutorial of Web design Quote:
Originally Posted by makmakpoli I need a tutorial in CSS coding..
Can you give me a hand on this??
I cant find reliable sources recently, maybe you can help me.. | try to visit w3schools.com. There are some tutorials there for free.
| 
08-12-08, 08:29 AM
|  | DNL Member | | Join Date: Jul 2008
Posts: 90
| | Re: Tutorial of Web design
I go to w3schools.com frequently for references..I highly recommend it too for newbies
| 
08-21-08, 02:16 AM
| | DNL Newbie | | Join Date: Aug 2008
Posts: 3
| | Re: Tutorial of Web design How does CSS work?
In this lesson you will learn how to make your first style sheet. You will get to know about the basic CSS model and which codes are necessary to use CSS in an HTML document.
Many of the properties used in Cascading Style Sheets (CSS) are similar to those of HTML. Thus, if you are used to use HTML for layout, you will most likely recognize many of the codes. Let us look at a concrete example. The basic CSS syntax
Let’s say we want a nice red color as the background of a webpage:
Using HTML we could have done it like this: <body bgcolor=”#FF0000″>
With CSS the same result can be achieved like this: body {background-color: #FF0000;} Applying CSS to an HTML document
There are three ways you can apply CSS to an HTML document. These methods are all outlined below. We recommend that you focus on the third method i.e. external. In-line (the attribute style)
One way to apply CSS to HTML is by using the HTML attribute style. Building on the above example with the red background color, it can be applied like this: <html>
<head>
<title>Example</title>
</head> <body style=”background-color: #FF0000;”>
<p>This is a red page</p>
</body>
</html> Internal (the tag style)
Another way is to include the CSS codes using the HTML tag <style>. For example like this: <html>
<head>
<title>Example</title>
<style type=”text/css”> body {background-color: #FF0000;} </style>
</head> <body>
<p>This is a red page</p>
</body>
</html> Try it yourself
Open Notepad (or whatever text editor you use) and create two files - an HTML file and a CSS file - with the following contents: default.htm <html>
<head>
<title>My document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head> <body>
<h1>My first stylesheet</h1>
</body>
</html> style.css
body {
background-color: #FF0000;
}
| 
09-04-08, 08:22 PM
|  | Co-Admin DNLodge Staff | | Join Date: Sep 2008 Location: Florida, USA
Posts: 574
| | Re: Tutorial of Web design
Thanks for the nice find, well appreciated!
Also, anyone potentially have some good tutorials for learning the best ways to stack <div> tags?
| 
10-17-08, 08:37 AM
|  | DNL Newbie | | Join Date: Sep 2008
Posts: 9
| | Re: Tutorial of Web design
thanks for sharing
| 
10-23-08, 08:27 AM
|  | DNL Member | | Join Date: Sep 2008
Posts: 53
| | Re: Tutorial of Web design
Free tutorials available at youtube,tizag,lynda,pixel2life
Learn how to do a website with these.
| 
10-23-08, 08:25 PM
|  | Community Leader DNLodge Staff | | Join Date: Oct 2007
Posts: 718
| | Re: Tutorial of Web design
Thanks Rayver and Papedsk, Ill add +repu to both of you.. keep it up.. | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |