html - How do i move my text? -


here's simple html code,

<html>     <head>      </head>     <body>          <h1> hotel-in sign up!</h1>         <p>first name</p>          <form>             <input type="text" name="name" size="20">         </form>      </body>  </html> 

when see webpage, text first name onto of form, want on left of form, how do this? thanks!

here's how demo

<h1> hotel-in sign up!</h1>    <form>    first name:    <input type="text" name="name" size="20">  </form>


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

formula - R: how to pass in a reference to the variable in glm or lm? -