All you need to know about Pirate-Community

It is unsafe to enable HTML in posts but what problem could it bring if only admins can just make the text bold in forum descriptions.
 
Hunchman801 said:
This does not mean anything, even if some browsers will recognize it. You should write "checkbox" without any space... And do not forget it needs the <form> tags to make sense ;)
Oh, you mean:
<form>
<tr>
<td>
<input type="text" name="Name" id="Name">
</input>
</td>
 
neo said:
Oh, you mean:
<form>
<tr>
<td>
<input type="text" name="Name" id="Name">
</input>
</td>
Unless you put a <table> tag before, using <tr> and <td> tags makes no sense. You should also close the <form> tag :P
 
Hunchman801 said:
neo said:
Oh, you mean:
<form>
<tr>
<td>
<input type="text" name="Name" id="Name">
</input>
</td>
Unless you put a <table> tag before, using <tr> and <td> tags makes no sense. You should also close the <form> tag :P
OK

<html>
<title></title>
<head></head>
<body>
<form>
<table width="30">
<tr>
<td>
<input type="text" name="Name" id="Name">
</input>
</td>
</tr>
</table>
</form>
</body>
</html>

There LOL.

EDIT: I FORGOT TO CLOSE THE TR TAG LOL. THERE.
 
Oh, SHIT. I didn't mean to do that ROFL!! Well, it does sound reasonable though... (I couldn't remember whether or not to close it, so I did anyways lol) :lol: :P
 
Also the break line code "<br>" should be "<br />" so that all browsers will know that well. I learned this from Phoenixan.
 
<html>
<title>POOP</title>
<heading>SAKE</heading>
<style type="css">
contents of Cascading Style Sheet
</style>
<body></body>
 
Back
Top