HTML; Browse button within a table row

  • Thread starter Thread starter Deleted member 1064280
  • Start date Start date
D

Deleted member 1064280

Guest
Hi,i need to create a Browse button that uploads files from PC to Web but i can't get the hang of the code needed for it. The language is HTML by the way. The design i'm having trouble with is circled in the picture.
Click here to see the picture.
As you can see, i need a caption in the left,right next to it an empty long table row,and a Browse(Choose File,Upload) button inside a row as well, that uploads files from your PC to the web.
If anyone knows the code,i'd be really thankful.
:)
 
This is at least 90% of the solution:

Also, I'm actually reading the thread now. Why did I even do this? Do your own homework. This is a fucking marketing forum.

Code:
<!DOCTYPE html>
<html>
<head>
<style>
table {
    background-color:pink;
    display:inline-block;
    width:65%;
}
tbody{
  float:right;
}
span {
  width:30%;
  float:left;
  display:inline-block;
}
table td input {
  float:right;
}
</style>
</head>
<body>

<span>Here's some caption.</span>
<table>
  <tbody>
    <tr>
      <td><input type="button" value="Mama mia"></td>
    </tr>
  <tbody>
</table>

</body>
</html>
 
This is at least 90% of the solution:

Also, I'm actually reading the thread now. Why did I even do this? Do your own homework. This is a fucking marketing forum.

Code:
<!DOCTYPE html>
<html>
<head>
<style>
table {
    background-color:pink;
    display:inline-block;
    width:65%;
}
tbody{
  float:right;
}
span {
  width:30%;
  float:left;
  display:inline-block;
}
table td input {
  float:right;
}
</style>
</head>
<body>

<span>Here's some caption.</span>
<table>
  <tbody>
    <tr>
      <td><input type="button" value="Mama mia"></td>
    </tr>
  <tbody>
</table>

</body>
</html>
Be easy on the young man,web design is part of IM :D
 
This is at least 90% of the solution:

Also, I'm actually reading the thread now. Why did I even do this? Do your own homework. This is a fucking marketing forum.

Code:
<!DOCTYPE html>
<html>
<head>
<style>
table {
    background-color:pink;
    display:inline-block;
    width:65%;
}
tbody{
  float:right;
}
span {
  width:30%;
  float:left;
  display:inline-block;
}
table td input {
  float:right;
}
</style>
</head>
<body>

<span>Here's some caption.</span>
<table>
  <tbody>
    <tr>
      <td><input type="button" value="Mama mia"></td>
    </tr>
  <tbody>
</table>

</body>
</html>


Hey man thanks for advice but be cool everyone needs help sometimes.
Besides, I also have my very own great strategy of Clickbank income which is working great right now so I'm not a useless teen :D
Thanks for helping.

Be easy on the young man,web design is part of IM :D


Thanks for support man. :)

1) I found several resources: HERE
2) BHW is not the best place to ask for help on homework


Hahahah. You could've insulted me head on instead of making me go theough that link. For your info, I searched many resources besides Google and couldn't find the solution. I came here because I knew there would be smart people like you who know the solution and could help me. So please, stop being such a hard type person, it's not like im asking for your secrets on how to make money.
Peace.
 
Last edited by a moderator:
Hey man thanks for advice but be cool everyone needs help sometimes.
Besides, I also have my very own great strategy of Clickbank income which is working great right now so I'm not a useless teen :D
Thanks for helping.

Thanks for support man. :)

Hahahah. You could've insulted me head on instead of making me go theough that link. For your info, I searched many resources besides Google and couldn't find the solution. I came here because I knew there would be smart people like you who know the solution and could help me. So please, stop being such a hard type person, it's not like im asking for your secrets on how to make money.
Peace.

A tip: you should start utilizing the multiquote feature so you don't get warned for trying to boost post count.
 
A tip: you should start utilizing the multiquote feature so you don't get warned for trying to boost post count.

Thanks for warm advice bro :)
 
  • Like
Reactions: X
Back
Top