JSFiddle - React, Tailwind, and code Playground

by Manuel Gertrudix

HTML

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Ejemplo de evento onload</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>

  <h1>Ejemplo de evento onload</h1>

  <p>Cuando se carga la ventana, el evento <strong>onload</strong> hace que salte la alerta</p>
  
  <script>
  window.onload(alert('Respondo un evento onload'));
    
  </script>

</body>
</html>

CSS

body {
  font-family: "Open Sans", sans-serif;
}