forked from leibovic/stopwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 1.88 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<!--
This is an HTML file. HTML (HyperText Markup Language) is the core
syntax for putting information on the web. If you want to create or
modify web pages, it's best if you learn HTML.
You can learn more about HTML here:
https://developer.mozilla.org/learn/html
This is an HTML comment. Anything inside these comment symobls will be ignored
by the browser, which is handy for adding explanations to your code!
-->
<html>
<head>
<meta charset="utf-8">
<!-- This title tag controls the page title that appears when you load this app in a browser -->
<title>Stopwatch</title>
<!-- This link tag creates the favicon for the page -->
<link rel="icon" href="img/icons/stopwatch-128.png">
<!-- This viewport meta tag makes sure the app fits the width of mobile devices -->
<meta name="viewport" content="width=device-width,user-scalable=false">
<!-- This link tag loads the style sheet to style the app -->
<!--link rel="stylesheet" href="css/stopwatch.css"-->
<!-- This link tag loads the style sheet to style the buttons in the app
See: http://buildingfirefoxos.com/building-blocks/buttons.html -->
<!--link rel="stylesheet" href="http://buildingfirefoxos.github.io/Building-Blocks/style/buttons.css"-->
<!-- This link tag loads an external font for the app to use
See: https://www.google.com/fonts/ -->
<!--link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans"-->
</head>
<body>
<!--h1 id="clock">00:00</h1-->
<!--button id="start-stop">Start</button-->
<!--button id="reset" class="danger">Reset</button-->
<!-- This button is hidden by default -->
<!--button id="install" class="hidden recommend">Install Stopwatch</button-->
<!-- This loads the JavaScript file to control the app -->
<!--script type="text/javascript" src="js/stopwatch.js"></script-->
</body>
</html>