Hello,
I have one page website that was made by a professional. Now I want to add a contact page that I wrote. My question is, Should I paste the <head> from the index.html file I already have into the contact-me.html file I wrote? And should I put something else in all pages of my website?
For <head> I mean this stuff:
<head>
<!-- ========== Meta Tags ========== -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is the website content description.">
<!-- ========== Page Title ========== -->
<title>Website Page Title</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="manifest" href="assets/img/site.webmanifest">
<link rel="mask-icon" href="assets/img/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
I think I should use it to "format" the contact page in the same way. I don't know.
Thank you very much for advice in advance 🙂