Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. html {
  2. head{
  3. title "woop title"
  4. link "css/normalize.css" "stylesheet"
  5. }
  6. body{
  7. h1 "This is h1 Title in header"
  8. div {
  9. p {
  10. "This is simply a paragraph in a div."
  11. }
  12. h1 "This is h1"
  13. h2 "This is h2"
  14. }
  15. h1 "My favorites Fruits"
  16. $Fruits = "Apple","Banana","Orange","Ananas"
  17. ul {
  18. foreach($fruit in $Fruits){
  19. li {
  20. $fruit
  21. }
  22. }
  23. }
  24. }
  25. footer {
  26. p{
  27. "Copyright 2019"
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement