-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
41 lines (32 loc) · 1.47 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang='en'>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>Oldest Restaurants in Los Angeles</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://js.arcgis.com/3.19/esri/css/esri.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="header" role="banner">
<a id="skip-list" href="#" class="skip" tabindex="1">Skip to restaurants list</a>
<a id="skip-search" href="#" class="skip" tabindex="1">Skip to search</a>
<h1>Oldest Restaurants in Los Angeles</h1>
</header>
<div id="wrapper">
<div id="sidebar">
<div id="search" role="search"></div>
<p id="results" aria-live="assertive"></p>
<main id="list" role="main"></main>
</div>
<div id="map" tabindex="-1"></div>
</div>
<footer id="footer" role="contentinfo">
Source: <a href="http://thelosangelesbeat.com/2015/05/offbeat-l-a-the-oldest-surviving-los-angeles-restaurants-a-master-list-of-the-vintage-historic-and-old-school/">The LA Beat</a>
</footer>
<script src="https://js.arcgis.com/3.19/"></script>
<script src="app.js"></script>
</body>
</html>