concerning meta tags/tags one in particular the <title></title> so should it be the first tag or does it not mater for instance would it be:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>your title _ home</title>
<meta name="viewport" content="width=device-width" />
<meta name="Description" content="mad house" />
<meta name="keywords" content="mad,house" />
<meta name="author" content="fwebsite design.">
<meta name="Copyright" content="Copyright (c) ">
<link rel="stylesheet" href="stylesheets/default.css" />
</head
Or would it be:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<meta name="Description" content="mad house" />
<title>your title _ home</title>
<meta name="keywords" content="mad,house" />
<meta name="author" content="fwebsite design.">
<meta name="Copyright" content="Copyright (c) ">
<link rel="stylesheet" href="stylesheets/default.css" />
</head> which is correct or does it matter I would say the title tag is the most important and should be the first tag on the page
Peter (AKA badger)