34 lines
896 B
HTML
34 lines
896 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="light dark">
|
|
<link rel="stylesheet" href="css/pico.min.css">
|
|
<link rel="stylesheet" href="css/grid.css">
|
|
<title>Project - Store Front</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav>
|
|
<ul>
|
|
<li><strong>Sparrow Photography</strong></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="#">About</a></li>
|
|
<li><a href="#">Services</a></li>
|
|
<li><a href="#">Products</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="container">
|
|
<grid-of-photos>
|
|
<p aria-busy="true">Loading...</p>
|
|
</grid-of-photos>
|
|
</div>
|
|
<div class="container">
|
|
<p><em>Photos by Jack Sparrow. All rights reserved.</em></p>
|
|
</div>
|
|
<script src="js/grid-of-photos.js"></script>
|
|
</body>
|
|
</html>
|