Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Last active September 7, 2021 07:46
Show Gist options
  • Save PrateekKumarSingh/afd785d7a8b6b5bc52cc40c71252784b to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/afd785d7a8b6b5bc52cc40c71252784b to your computer and use it in GitHub Desktop.
html {
head{
title "woop title"
link "css/normalize.css" "stylesheet"
}
body{
h1 "This is h1 Title in header"
div {
p {
"This is simply a paragraph in a div."
}
h1 "This is h1"
h2 "This is h2"
}
h1 "My favorites Fruits"
$Fruits = "Apple","Banana","Orange","Ananas"
ul {
foreach($fruit in $Fruits){
li {
$fruit
}
}
}
}
footer {
p{
"Copyright 2019"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment