tags:

views:

138

answers:

8

Hai,

Is it possible to create a website without css?

thanks

A: 

Yes its possible, but it would look like a notepad document... i dont know why you would want to do that..

jason
A: 

Yeah, you can. It will be all white with just text though.

CSS styling is what makes websites look the way they do along with the design... its pretty important.

Kevin
do we have any alternative for css?
Thinker
Yeah, a <font> tags and a time machine should do the trick.
Zack Mulgrew
You can put styles inline in the html markup. But the idea of CSS is to separate your styling from your content and provide a means of targeting styles to content.
tarn
In 2010, there is no alternative.You can learn CSS in about 7 days. Truely. Nothing to it.
Kevin
There are alternatives - Flash and Silverlight, also there is SVG which can also bring in some graphics and interactivity.
easwee
If the OP is reluctant to use/learn CSS I doubt they will jump to Flash, Silverlight and SVG.
Kevin
A: 

Yes it is and as those who have come before me have said it will look like note pad mostly. You can do a bit of formating and such with depreciated tags and such but it is very poor form. Additionally every element does take the style="" as a parameter but this is in essence, css. There isn't really another option.

Mimisbrunnr
A: 

You can try an automated website creation tool. There are thousands of options.

  • Google sites
  • Wikimedia
dreftymac
A: 

Yes, and you could even style it with element attributes and lay it out with tables. This is exactly why CSS was invented though, because it's a pain in the rear to do it this way and it goes against semantic markup.

deceze
+1  A: 

You can alsoways use Font. However, I suggest you to learn CSS as well as It gives you to implement a lot more styles and a lot more flexibility.

For flexibility, for example, If you have decided to make all your headings as Verdana and color green, you would write something like this for all of your headings in many of your pages..

<h1><font face="verdana" color="green">This is some text!</font></h1>

After sometime, If you decide to change all the headings to appear in Arial and look green, you have to change each of those font tags. Instead, you create something like below :-

h1
{
font-family:"Verdana";
color:green;
}

Put the above in a CSS file say MyStyle.css and reference the following in all of your pages inside the header:-

<LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen>

After this, anytime you want to change the color and style name of your heading1, you change only in the MyStyle.css and then the styles will get applied on Heading1 in all your pages.

ydobonmai
+1  A: 

Yes you can. You can use flash or silverlight and it will look even better than when you use css and html, these technologies have the ability to also call php codes.

Shawn Mclean
A: 
<html>
<head>
</head>
<body>
<p>Look Ma! No Css!</p>
</body>
</html>
Mike B