Jump to content

oknoorap

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by oknoorap

  1. Okay try this HTML:

    <html><head>    <Title>I love you the most.</title>    <link rel="stylesheet" type="text/css" href="lovestyle.css" />    <link href='http://fonts.googleapis.com/css?family=Griffy' rel='stylesheet' type='text/css' /></head>    <body>   <div class="main">      <h1 class="title">I love you the most.</h1>      <h2 class="subtitle">A website for Mara & Jensen</h2>           <ul class="navigation">         <li><a href="mfm.html">Music for Mara</a></li>         <li><a href="score.html">Score Board</a></li>      </ul>           <div class="content">         <p>this is a test blah blah blah</p>      </div>      <div class="clear"></div>   </div></html> 

    CSS:

     body {   background-color:#ffffff;} div.main {   width: 1024px;   border: none;   margin: 0 auto;   padding: 0;   background-color:#ffffff;   white-space:nowrap;   outline-color:#000000;   outline-style:dotted;} h1.title {   font-family: 'Griffy', cursive;   color:#00000;   text-align:right;   font-size:50px;   position:relative;   right:10px;   white-space:nowrap;   margin:0px;} h2.subtitle {   color:#000000;   font-size:14px;   text-align:right;   position:relative;   right:15px;   top:0px;   white-space:nowrap;   margin:0px;}  ul.navigation {   list-style-type:none;   margin:5px;   padding:0;   text-align:left;   float: left;   width: 200px;} ul.navigation a {   display: block;} div.content {   width:550px;   border:0;   padding:0;   margin:5px;   float: left} .clear {    clear: both;}

    mail()

    The idea of using mail() function is bad, you must using library like phpmailer, or you can using paid SMTP Server relay.. There is reason that mail service such as gmail, your mail will shown at spam folder. But if you're using smtp, google will marked your email as important email.mail() is basic php function that using port 25, so gmail or other mail service will be carefully marked email that sent by port 25.

×
×
  • Create New...