HTML Design Question?

A Breast Pump

New member
<html>
<body onLoad="document.form.input.focus();">
Do Not Adjust Your Computer Screen.
<br>
<font color="blue">!OUTPUT!</font>
<br>
<form method="POST" name="form">
!CUSTID!
say: <input type="TEXT" autocomplete="off" name="input">
</form>
<br>
</body>
</html>

How would I add a background using a picture from my computer or the web to that?

Also, how would I change the style of text?
 
Add this below the html tag:

<head>

<style type="text/css">
body{{background-image:url('your.jpg)}
</style>

</head>

This assumes the file called your.jpg is in the same directory on the server as your webpage.
 
Back
Top