<!DOCTYPE html utf-8>
<html>
<head>
<title>First Html</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<style type="text/css">
.color{
width: 80px;
height: 80px;
margin: 10px;
display: flex;
flex-direction: row;
color: white;
}
#contenedor{
display: flex;
}
#rojo{background-color: red;}
#azul{background-color: blue;}
#amarillo{background-color: yellow;}
#naranja{background-color: orange;}
.rojo {color: red;}
.azul {color: blue;}
.amarillo {color: yellow;}
.naranja {color: orange;}
</style>
</head>
<body>
<h1>This is my First webpage</h1>
<div id="contenedor">
<div class="color" id="rojo">rojo</div>
<div class="color" id="azul">azul</div>
<div class="color" id="amarillo">amarillo</div>
<div class="color" id="naranja">naranja</div>
</div>
<p>My name is Daniel, and I am from Honduras</p>
<div class="container">
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
<script type="text/javascript">
$(document).ready(function(){
$(".color").mouseenter(function(e){
$(".container").html(e.target.innerHTML);
$(this).addClass(e.target.innerHTML);
})
});
</script>
</html>