-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfake-store.html
More file actions
27 lines (27 loc) · 915 Bytes
/
Copy pathfake-store.html
File metadata and controls
27 lines (27 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Example website for practice</title>
<link rel="stylesheet" href="fake-store.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- icon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<img src="logo.png" id="logo"/>
<nav>
<ul id="navigation">
<li><a href="index.html" title="">Home</a></li>
<li><a href="baking-journey.html">Baking Journey</a></li>
<li><a href="fake-store.html">Fake Store</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</body>
</html>