xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
/* Apply float to the input element */
input {
float: left;
}
</style>
</head>
<body>
<!-- Floating input element -->
<input type="text" name="myInput" value="Floats to the left" />
<!-- Other content -->
<p>This text flows around the floated input element.</p>
</body>
</html>