-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.09 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Favorite Drinks (RS Example App)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" type="image/png" sizes="512x512" href="/img/icon.png">
<link rel="icon" type="image/png" sizes="128x128" href="/img/icon-128px.png">
<link rel="icon" type="image/png" sizes="48x48" href="/img/icon-48px.png">
<link rel="apple-touch-icon" href="/img/icon.png">
<script src="remotestorage.js"></script>
<script src="remotestorage-module.js"></script>
<script src="widget.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="widget-wrapper"></div>
<div id="wrapper">
<h1>My Favorite Drinks</h1>
<form id="add-drink">
<input type="text" placeholder="Add a drink">
<button type="submit">Add</button>
</form>
<ul id="drink-list"></ul>
<p id="background-credit">picture by <a href="https://www.flickr.com/photos/138866094@N02/29600930613">Matheus Swanson</a></p>
</div>
</body>
</html>