multi page setup

multi page setup

In a multi-page site, all <head> code is to be the same for all pages. Question: is there any problem with using a php include to stamp each page with the same head code?

like so: <?php include 'theHeader.php'; ?>
<html>
<head>
<title>My Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jq/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="themes/sew16.min.css">"
<link rel="stylesheet" href="css/sew16.css">

<script src="jq/jquery-2.1.4.min.js"></script>
<script src="jq/jquery.mobile-1.4.5.min.js"></script>
<script src="js/machineList.js"></script>

</head>
<body>

<div data-role="page" id="home" class="ui-body-a">
<?php include 'header.php'; ?>
//end of theHeader.php

I am already using the php include for the footer and have not noticed any issues, but there are many in this forum that know the finer points. What do you think?