index/404 pages scale for mobile devices

This commit is contained in:
Kyle Drake 2019-09-19 18:46:50 -07:00
parent 6a5a7c8e3b
commit e223b687b2
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The web site of <%= username %></title> <title>The web site of <%= username %></title>
<!-- The style.css file allows you to change the look of your web pages. <!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look. If you include the next line in all your web pages, they will all share the same look.

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found</title> <title>Not Found</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all"> <link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head> </head>