i am planning to design web using php with so basic knowledge (almost none).?

newrehmi3

New member
this is my final year project that already been proposed to my lecture. However, I am still too much noob for this kind language (because I never had any site programming subject in my course, but know basic about html). After making some research, can css really good to be integrate into the php-like site? Instead of html?
 
CSS needs html, or xhtml to work. In its simplest form css just adds style to a html document.

<html>
<head>
<title>Lame Page</title>
</head>
<body>
Lame Page
</body>
</html>

<html>
<head>
<title>Less Lame Page</title>
<STYLE type="text/css">
body {font-size:100%; background-color: #00ff00;}
</STYLE>
</head>
<body>
Less Lame Page with a larger font
and green background
</body>
</html>
 
Back
Top