Hey everyone, my first post here :D
I am new to the css style of making a web page. I usually just use the html and iframe method.
my problem is...I don't really know HOW to use php and css together. I am trying it and so far so good except one thing. I dont think it's correct xD and I cant get a div to go where I want it to or check with the css for it's style.
IF YOU DONT WANT TO READ ALL OF IT GO DOWN FOR A LINK TO DOWNLOAD THE FILES. (90kb very tiny and quick download in .rar folder)
My index.php:
My layout .php
my content.php:
my bottom.php
Finely my styles.css:
LINK:
http://www.sendspace.c om/delete/s2cc6n/wfvoq
I am new to the css style of making a web page. I usually just use the html and iframe method.
my problem is...I don't really know HOW to use php and css together. I am trying it and so far so good except one thing. I dont think it's correct xD and I cant get a div to go where I want it to or check with the css for it's style.
IF YOU DONT WANT TO READ ALL OF IT GO DOWN FOR A LINK TO DOWNLOAD THE FILES. (90kb very tiny and quick download in .rar folder)
My index.php:
Code:
<?php include("layout.php"); ?> Hello THIS IS THE BLAH and the sjdfl kjds fdsjf dkslfj dskf ldksjf sdjfk jdklfj dfkj sfkj dkslfj dlfjlskdf dsfj fdsljflka dfkjd fjlkajk dfkjd aslfjdlkf skljdf kdsjlfaj fkjldk ajkljdf kajfkla jdfkjd aslkj fkldjfkl ajfklj adlkf <?php include("content.php"); ?> <?php include("bottom.php"); ?>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <link rel="stylesheet" type="text/css" href="styles.css" media="screen"/> <title>Nouman Layout, lol</title> <style type="text/css"> <!-- .style3 { color: #92c240; font-size: 18px; } .style5 {font-family: Verdana, Arial, Helvetica, sans-serif} .style6 {color: #92c240; font-size: 20px; } .style7 {font-family: Arial, Helvetica, sans-serif} --> </style> </head> <body> <div id="wrapper"> <div align="center"> </div> <div id="header"> <div class="headertext"> <div align="center">Nouman Layout, lol </div> </div> </div>
Code:
<div id="main">
Code:
</div> <div align="center"> </div> <div id="content"> <div id="buttonrow"> <div align="center"> <a href=" index.html" accesskey="i" class="button"> Home</a> <a href=" about.html" accesskey="h" class="button"> About</a> <a href=" work.html" accesskey="w" class="button"> Shopping >></a> <a href=" contact.html" accesskey="c" class="button"> Resturants >></a> <a href=" contact.html" accesskey="c" class="button"> Family >></a> <a href=" contact.html" accesskey="c" class="button"> Contact >></a> </div> </div> <div id="right"> <div align="center"> What's New </div> </div> </div> <div align="center"> <div id="footer"> <div align="center">© Copyright or whatever Nouman 2006</div> </body> </html>
Code:
html { font-family: 'trebuchet ms', sans-serif; font-size: 16px; font-weight: bold; letter-spacing: -1px; color: #000; } #wrapper { margin: 20px auto; width: 812px; } #header { margin-top: 2px; background: url( Final_03.gif); height: 102px; width: 812px; } #header .headertext { font-family: 'trebuchet ms', sans-serif; font-size: 20px; font-weight: bold; letter-spacing: px; padding-top: 60px; text-align: center; color: #fff; } #content { background: url(Final_06.gif) repeat-y; width: 812px; padding-bottom: 300px; } #main { font-family: 'trebuchet ms', sans-serif; font-size: 8px; margin-left: 200px; margin-right: 200px; width: 400px; background: #FFFFF; } #buttonrow { background: url(Greybar.gif) repeat-y; display: inline; float: left; width: 155px; height: 250px; margin-left: 18px; overflow: hidden; } a.button { float: left; width: 140px; height: 26px; margin-left: 18px; background: url( button.gif) no-repeat 0 0; font-family: 'trebuchet ms', sans-serif; font-size: 14px; margin-left: 0px; letter-spacing: 1px; text-align: left; color: #FFFFFF; text-decoration: none; } a:hover.button { background-position: 0 -26px; } #right { background: url(Greybar1.gif) repeat-y; display: inline; float: right; width: 155px; height: 250px; overflow: hidden; } #footer { overflow: hidden; background: url(Final_08.gif); height: 41px; width: 812px; font-family: 'trebuchet ms', sans-serif; font-size: 22px; font-weight: bold; letter-spacing: -1px; color: #fff; text-align: center; line-height: 42px; }
http://www.sendspace.c om/delete/s2cc6n/wfvoq
Comment