<!DOCTYPE html>
<html>
<body>
<p>This example demonstrates how to assign an "onblur" event to an input element.</p>
<p>Write something in the input field, and then click outside the field to lose focus (blur).</p>
<input type="text" onblur="myFunction()">
<script>
function myFunction() {
alert("Input field lost focus.");
}
</script>
</body>
</html>