Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- AUTHOR = "Stuart Pullinger"
- page = (
- DOCTYPE.html
- +html
- +head
- +title +AUTHOR
- +link(href="css/style.css", rel="stylesheet")
- +body
- +h1('#top') +f"Welcome to {AUTHOR}'s webpage!"
- +div .menu
- +h2 +"Menu"
- +ul
- +li
- +a(href="about.html") +f"Learn more about {AUTHOR}" # single line comment
- +li
- +a(href="contact.html") +f"Get in contact with {AUTHOR}"
- +li
- +a(href="#top") +"Return to top"
- # This is Python
- # No multi-line comments
- +script(src="js/script.js")
- +button(type_="button", onClick="fireConfetti()")
- +"click here for a surprise!"
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement