-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
60 lines (50 loc) · 2.59 KB
/
info.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
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<!-- Header tags consists of all the links and libaries that is used in this website -->
<head>
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<style>
.ui-body-i
{
font-weight:bold;
color:white;
background-color: #66CCFF;
}
</style>
</head>
<body>
<!-- This is the main page that is displayed on the browser, which contains a header,
a content section, and a footer. -->
<div data-role="page" id="countSmoking" data-theme = "i">
<div data-role="header">
<a href= "welcome.php" data-icon="back" data-iconpos="notext"></a>
<h1>Quit Smoking</h1>
</div>
<!-- This section displays information about the application. -->
<div>
<p>Quit Smoking</p>
<p>is a mobile web application that is design to help people who wish to quit smoking. The program provides the users with two options:
<ul>
<li>A healthy plan option</li>
<li>And a money saver option</li>
</ul>
</p>
<p>The program uses an algorithm that calculates the user's smoking consumption and then outputs to him/her the suggested number of
cigerattes they can smoke each day, while decreasing the number everyday</p>
</div>
<!-- The footer contains a back button, which will redirect the browser to the previous page. -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar" align="center">
<ul>
<li><a href="history.php" data-transition = "slide" data-icon="info">History</a></li>
<li><a href= "http://bbs.blackroom.me" data-transition = "slide" data-icon="grid" value = "Forum">Forum</a></li>
<li><a href="info.html" data-transition = "slide" data-icon="star">Information</a></li>
<li><a href="http://www.healthycanadians.gc.ca/health-sante/tobacco-tabac/quit-arretez-eng.php" data-transition = "slide" data-icon="heart">Get Help</a></li>
</ul>
</div>
</div>
</body>
</html>