Is there any opensource html design template available?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tvnaidu
    Contributor
    • Oct 2009
    • 365

    Is there any opensource html design template available?

    I wrote form html code with some radio button selection and apply button at the bottom, I am getting some alignment issue, Is there anyway I can get some opensource code to makeit like close to professional look?. thanks.
  • Dököll
    Recognized Expert Top Contributor
    • Nov 2006
    • 2379

    #2
    Hey there!

    I have not heard of it but you can save yourself some time by adding your form items to a table:

    Code:
    <body bgcolor="#deefef"><br><b><h2><font color="black">Open Items Form</font></h2></b> 
    <form method="post" name="frm" action="SearchUserData"> 
    
    
    <table border="0" width="350" align="left" bgcolor="lightgrey"> 
    
    
    <tr><td colspan=2 style="font-size:12pt;color:#00000;" align="left"> 
    <h3><font color="red">Reports - Units</font></h3></td></tr> 
    
    
    <tr><td align="right">Last name</td> 
    <td><input type="text" name="LastName" id="LastName"> 
    </td></tr> 
    
    
    <tr><td align="right"> Office Name</td> 
    <td><input type="text" name="OfficeName" id="OfficeName"> 
    </td></tr> 
    
    
    <tr><td align="right"> </td> 
    <td><input type="submit" name="submit" value="Run Report"> </td></tr> 
    </table>
    Cut and paste this and see what I mean... You'd set the border to 0 and you'd be all set.

    Here is a site you can use for HTML table help:

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.


    There're a number of ways, but I do not thing you really need to find sofware to do this, if you're writing your site from scratch:-)

    Do stay tuned if you'd rather other options...

    In a bit!
    Last edited by Dököll; Nov 22 '09, 08:33 PM. Reason: format code...

    Comment

    Working...