| 
<!DOCTYPE html><html>
 <head>
 <title>Welcome</title>
 <link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
 <link rel="stylesheet" type='text/css' href="<? echo $this->url('src/app/views/style.css'); ?>">
 <style type="text/css">
 img{
 max-width: 10%;
 }
 body{
 
 font-family: 'Josefin Slab', serif;
 font-size: 72px;
 text-align: center;
 padding-top: 15%;
 color:black;
 }
 </style>
 </head>
 <body>
 Hydrogen Framework <strong>4</strong><br/>
 <img src="<?php echo $this->url('src/app/views/hd.jpeg'); ?>" alt="" />
 </body>
 </html>
 
 |