lib/popcorn: introduce static_files examples
[nit.git] / lib / popcorn / examples / static_files / public / hello.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5
6 <title>Some Popcorn love</title>
7
8 <link rel="stylesheet" type="text/css" href="/css/style.css">
9 </head>
10 <body>
11 <h1>Hello Popcorn!</h1>
12
13 <img src="/images/trollface.jpg" alt="maybe it's a kitten?" />
14
15 <script src="/js/app.js"></script>
16 </body>
17 </html>