<html>
<head>
<style type="text/css">
</style>
<script>
</script>
</head>
<body>
<script>
a=["red","orange","yellow","green","blue","navy","purple"];
for(i=0;i<7;i++){
document.write("<input type=button value="+a[i]+">");
}
</script>
</body>
</html>