diff options
| author | Alee <alee14498@gmail.com> | 2018-11-18 12:17:59 -0500 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-11-18 12:17:59 -0500 |
| commit | d393774579f410e1107a2f31818565ce19b50975 (patch) | |
| tree | 897081526933d6142a1cd9b4e063b6403975bbde /_includes | |
| parent | 5544220a54f2dc991c31623c13e2f0bb5361dea8 (diff) | |
| download | personal-website-d393774579f410e1107a2f31818565ce19b50975.tar.gz personal-website-d393774579f410e1107a2f31818565ce19b50975.tar.bz2 personal-website-d393774579f410e1107a2f31818565ce19b50975.zip | |
DOCTYPE and IE and Edge compatibility
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/heading.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_includes/heading.html b/_includes/heading.html index d7f51d3..594e23d 100644 --- a/_includes/heading.html +++ b/_includes/heading.html @@ -1,9 +1,11 @@ <link href="/style.css" type="text/css" rel="stylesheet"> +<meta http-equiv="X-UA-Compatible" content="IE=edge" /> +<meta http-equiv="X-UA-Compatible" content="IE=8"/> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> <script src="/jquery-3.3.1.min.js"></script> <script src="/scripts.js"></script> <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <meta charset="utf-8"> -<meta name="viewport" content="width=device-width"> +<meta name="viewport" content="width=device-width", initial-scale=1> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> |
