Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. html().with(
  2.     head().with(
  3.         title().withText("Title"),
  4.         link().withRel("stylesheet").withHref("/css/main.css")
  5.     )
  6. ).render();
  7.  
  8. gir
  9.  
  10. <html>
  11.   <head>
  12.      <title>Title</title>
  13.      <link rel="stylesheet" href="/css/main.css">
  14.   </head>
  15. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement