CoffeeScript

by Prestige Projects

HTML

<h1>
Prestige City Township in East Bangalore 
</h1>
<p>
<a href="https://www.prestigeraintreepark.live">Prestige Raintree Park</a> is designed according to Vaastu principles, promoting peace and harmony. The project’s state-of-the-art CCTV surveillance and secure meeting rooms ensure all residents' safety and peace of mind. These features allow people to live a simple life, knowing their well-being is always protected.
<p>
<a href="https://www.prestigeraintreepark.live/masterplan.html">Prestige Raintree Park Master Plan</a>
Experience the ultimate in urban sophistication and natural beauty at Prestige Raintree Park. This residential complex offers a unique blend of modern amenities and serene landscapes, making it an ideal choice for those seeking a luxurious yet peaceful living environment in Bangalore.

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

#app {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

li {
  margin: 8px 0;
}

JavaScript

list = document.querySelector "#app ul"
crew = ["Mal", "Zoe", "Wash", "Kaylee", "Jayne"]
greetings = []

greet = (name) ->
  greetings.push "<li>Hi #{name}</li>"

greet name for name in crew

list.innerHTML = greetings.join ""