<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<h2>ECRIRE DU TEXTE COMME UNE MACHINE EN JAVASCRIPT</h2>
<div id="text_machine"></div>
</div>
</div>
var monText = "Rouahi Mohamed Amine . email : rouahimedamine@gmail.com, skype : rouahimedamine, Portable : +216 26 711 513 Site web : www.symbolle.com . J'aimerais travailler dans un poste de développeur/intégrateur informatique, où je pourrait mettre à contribution mes compétences";
var TabText = monText.split("");
var temps;
function loop(){
if(TabText.length > 0){
document.getElementById("text_machine").innerHTML += TabText.shift();
}else{
clearTimeout(temps);
}
temps = setTimeout('loop()',100);
}
loop();