I have a bunch of link tags in the  tag of my HTML document. Is there any way I can put all of this in a separate HTML document and just link to that one?
E.g turn this:
</head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href='http://fonts.googleapis.com/css?family=Arvo:700' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Lato:300' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" type="text/css" href="styles.css">
    <script src="scripts.js"></script>
    <title>Home</title>
</head>
Into this:
<head>
    <link href="head.html" type="text/html">
    <title>Home</title>
</head>
With the separate file head.html containing all those links?
 
     
    