Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > The Community > The Coffee Lounge
Reload this Page Welcome to my site
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

The Coffee Lounge General chat about anything that goes, a good place to introduce yourself and say hi, tell a Joke, or just relax.

Site Navigation
Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 09-21-2008   #1 (permalink)
Linux Enthusiast
 
Lakshmipathi's Avatar
 
Join Date: Sep 2006
Location: 3rd rock from sun
Posts: 582
Smile Welcome to my site

Here is my first web site.

First I thought about 'drupal' for website.But later changed my mind,created a simple
HTML based website.This will have user guide and other docs related to linux projects.

I'm a very pathetic web designer so I welcome suggestions(color,font,design) to improve this site.

Site Home Page: www.giis.co.in
__________________
- Lakshmipathi.G
-------------------
www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
Lakshmipathi is offline   Reply With Quote
Old 09-21-2008   #2 (permalink)
Just Joined!
 
Join Date: Jul 2008
Posts: 27
the icons is very good, and the structure is oderly

but the colors, i put light colors.

PellRoja is offline   Reply With Quote
Old 09-21-2008   #3 (permalink)
Linux Newbie
 
schwim's Avatar
 
Join Date: May 2005
Location: Denial
Posts: 110
I think it's looking fine and is an awesome first attempt.

I would consider using your head tags so you can add a title to your page as well as keywords and descriptions for any site indexes that use them. Also, as you progress, you'll need the head area to store any javascript, css, etc.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Site title</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META HTTP-EQUIV="EXPIRES" CONTENT="0">
<META NAME="RESOURCE-TYPE" CONTENT="DOCUMENT">
<META NAME="DISTRIBUTION" CONTENT="GLOBAL">
<META NAME="AUTHOR" CONTENT="You">
<META NAME="COPYRIGHT" CONTENT="Copyright (c) by You">
<META NAME="KEYWORDS" CONTENT="keywords, that, pertain, to, what, your, site, is, about">
<META NAME="DESCRIPTION" CONTENT="Brief description concerninng your site">
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<META NAME="REVISIT-AFTER" CONTENT="1 DAYS">
<META NAME="RATING" CONTENT="GENERAL">
<META NAME="GENERATOR" CONTENT="Gedit">

<link rel="/home/site/public_html/includes/css/styles.css"  TYPE="text/css" />
</head>
<body>
Also, at the bottom of your page, you've got some text sitting outside of your body.

Have fun with it!

thanks,
json
__________________
Aloof linux user #whatever.

I tested off the charts for MENSA. Unfortunately, it was off the wrong end of the chart.
schwim is offline   Reply With Quote
Old 09-22-2008   #4 (permalink)
Linux Enthusiast
 
Lakshmipathi's Avatar
 
Join Date: Sep 2006
Location: 3rd rock from sun
Posts: 582
Smile

thanks guyz

@PellRoja,
light colors like? can please give more info. about good background/foreground colors?

@schwim,
I'll change the head tags and bottom line as specified by you.
__________________
- Lakshmipathi.G
-------------------
www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
Lakshmipathi is offline   Reply With Quote
Old 09-22-2008   #5 (permalink)
Trusted Penguin
 
Cabhan's Avatar
 
Join Date: Jan 2005
Location: Seattle, WA, USA
Posts: 2,484
I'm not sure that meta tags are so necessary (certainly no modern search engines rely on them), but they do provide a bit more info if someone wants to delve into your page.

I noticed that your page is not standards-compliant:
[Invalid] Markup Validation of http://www.giis.co.in/ - W3C Markup Validator

Being standards-compliant is just about ensuring that anyone on any browser can correctly view your page.

Also, as a guide to moving forward, the current trend in web design is towards a separation of style and semantics by not putting any display information in the HTML, but rather putting it into a separate stylesheet. A guide that explains why can be found at:
learn web standards :: css guide - introduction

Having said that, if this is your first website, well done! It's always exciting to finally have something out there that you've made. Hopefully this will be your first step into an exciting journey of web design.
__________________
DISTRO=Gentoo
Registered Linux User #388732
Gentoo Linux, 410 GB HD, 1.2 GB RAM, Fluxbox, These are a Few of my Favorite Things
Cabhan is offline   Reply With Quote
Old 09-22-2008   #6 (permalink)
Linux Newbie
 
schwim's Avatar
 
Join Date: May 2005
Location: Denial
Posts: 110
Quote:
Originally Posted by Cabhan View Post
I'm not sure that meta tags are so necessary (certainly no modern search engines rely on them),
Quote:
Originally Posted by Me View Post
I would consider using your head tags so you can add a title to your page as well as keywords and descriptions for any site indexes that use them.
Quote:
Originally Posted by Cabhan View Post
but they do provide a bit more info if someone wants to delve into your page.
Quote:
Originally Posted by W3C
The lang attribute can be used with META to specify the language for the value of the content attribute. This enables speech synthesizers to apply language dependent pronunciation rules.
Quote:
Originally Posted by W3C
The http-equiv attribute can be used in place of the name attribute and has a special significance when documents are retrieved via the Hypertext Transfer Protocol (HTTP). HTTP servers may use the property name specified by the http-equiv attribute to create an [RFC822]-style header in the HTTP response. Please see the HTTP specification ([RFC2616]) for details on valid HTTP headers.
Quote:
Originally Posted by W3C
The META element may be used to specify the default information for a document in the following instances:
In my opinion, there's a few more reasons to use the meta attributes than just for those wanting to delve further into the page.

I would surely work on them prior to concerning myself with the separation of style and content.

thanks,
json
__________________
Aloof linux user #whatever.

I tested off the charts for MENSA. Unfortunately, it was off the wrong end of the chart.
schwim is offline   Reply With Quote
Old 09-23-2008   #7 (permalink)
Just Joined!
 
Join Date: Sep 2008
Posts: 6
Meta is very important specially in search engines. Anyways Drupal is a good CMS why you not continue?
JeffNetSite is offline   Reply With Quote
Old 09-23-2008   #8 (permalink)
Linux Enthusiast
 
Lakshmipathi's Avatar
 
Join Date: Sep 2006
Location: 3rd rock from sun
Posts: 582
Thanks Cabhan For the CSS link
JeffNetSite..
I changed my mind since it's a simple HTML site
__________________
- Lakshmipathi.G
-------------------
www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
Lakshmipathi is offline   Reply With Quote
Old 09-28-2008   #9 (permalink)
Just Joined!
 
Join Date: Sep 2008
Posts: 6
Ah ok I see.
JeffNetSite is offline   Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Job Search
keyword location
Post a Job »
job title, keywords or company
city, state or zip jobs by job search

Free Magazines
Free eBook:"Vulnerability Management for Dummies"
Get all the Facts and See How to Implement a Successful Vulnerability Management Program.
subscribe
Google vs The World: The Battle of the Message Security Vendors
With such a powerful name behind it, Google Message Security stands out in a sea of products that do exactly the same thing - or so they say. So when it comes right down to it, how does the Google selection stack up against the rest of messaging security's big guns?
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 01:17 PM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0