Skip to content

Commit 0f588dc

Browse files
committed
added viewport tag, titles, focus
1 parent 8ae87a0 commit 0f588dc

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

about.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Document</title>
5+
<title>About</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
67
<link rel="stylesheet" href="css/simple-css-reset.css" />
78
<link rel="stylesheet" href="css/main.css" />
89
</head>

contact.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Document</title>
5+
<title>Contact</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
67
<link rel="stylesheet" href="css/simple-css-reset.css" />
78
<link rel="stylesheet" href="css/main.css" />
89
</head>

css/main.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ nav a {
2828
text-decoration: none;
2929
}
3030

31-
nav a:hover {
31+
nav a:focus {
32+
outline: 0;
33+
}
34+
35+
nav a:hover, nav a:focus {
3236
background: rgb(232, 71, 97);
3337
}
3438

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Document</title>
5+
<title>Home</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
67
<link rel="stylesheet" href="css/simple-css-reset.css" />
78
<link rel="stylesheet" href="css/main.css" />
89
</head>

products.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Document</title>
5+
<title>Products</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
67
<link rel="stylesheet" href="css/simple-css-reset.css" />
78
<link rel="stylesheet" href="css/main.css" />
89
</head>

0 commit comments

Comments
 (0)