Jump to content

How I Initiate A Website Building?


sunicani

Recommended Posts

Hi all,I am a beginner who have just learned basic knowledge like html, js, css. When it comes to website building, specified, the application of all that of knowledge, I have no idea where and how to start!Thank you mates who could guide me :) Cane

Link to comment
Share on other sites

First, start off with a simple HTML document "frame".

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">		<title>Untitled Document</title>	</head>	<body>	</body></html>

For styling, you might want to use these basic rules to get you started.

body {font-family:Tahoma;margin:0;padding:50px 100px;}img {border:0;}

What do you want to acheive in js though? If you want effects, http://script.aculo.us/ has some neat pre-built ones for beginners.Also, another thing you might want to consider... :)

Link to comment
Share on other sites

First, start off with a simple HTML document "frame".
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">		<title>Untitled Document</title>	</head>	<body>	</body></html>

For styling, you might want to use these basic rules to get you started.

body {font-family:Tahoma;margin:0;padding:50px 100px;}img {border:0;}

What do you want to acheive in js though? If you want effects, http://script.aculo.us/ has some neat pre-built ones for beginners.Also, another thing you might want to consider... :)

thanks a lot, my friend.
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...