Last active
September 7, 2021 07:46
-
-
Save PrateekKumarSingh/afd785d7a8b6b5bc52cc40c71252784b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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