Skip to content

Instantly share code, notes, and snippets.

@Leandros
Last active June 17, 2018 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leandros/31eedde1ad25e63b4b406842ae901ff5 to your computer and use it in GitHub Desktop.
Save Leandros/31eedde1ad25e63b4b406842ae901ff5 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta charset="utf-8">
<meta property="og:url" content="https://foo.bar">
<style>
#h1 {
font-size: 32px;
color: #fff;
}
</style>
</head>
<body>
<div width="100%">
<span id="h1">Welcome to Foo.bar</span>
</div>
<div>
<ul>
<li>Link 1</li>
<li>Link 2</li>
</ul>
</div>
</body>
</html>
(head
[meta charset "utf-8"]
[meta og:url "https://foo.bar"])
(body #layout:vertical
[div #layout:horizonal
(label #width:match-parent #height:wrap-content #id:h1 "Welcome to Foo.bar")]
[div 'vertical
(ul (li "Link 1")
(li "Link 2"))])
(style
[h1 #font-size:32px #font-color:"#fff"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment