In layout file I want to create a header like the all website has .I have an image for the header how can I put that image only for the header portion of the page in layout File?
this is my Code..
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo page_title; ?></title>
<?php
$homeUrl = $this->url('home', array(), array('force_canonical' => true));
$basePath = $this->basePath();
$this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/png', 'href' => $this->basePath() . '/img/FantasyFootballLogo.png'))
?>
<?php echo $this->headLink() ?>
</head>
--Option1: <header style="background-image:url(/img/ffheader.png)" height="300" width="1000">
</header>
--Option2: <header>
<div style="background-image:url(/img/ffheader.png)"></div>
</header>
can anybody Please Help me how to set Header?