-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (90 loc) · 5.36 KB
/
index.html
File metadata and controls
113 lines (90 loc) · 5.36 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<!-- Mirrored from studentnet.fife.ac.uk/~1880611/app - separatepages/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 30 Apr 2022 19:16:53 GMT -->
<head>
<title>Healthy Living</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--stylesheets-->
<link rel="stylesheet" type="text/css" href="style/style.css" />
<!--Favicon-->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!--Font Awesome CDN-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!--jQuery CDN-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<!--Styleshets-->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<link rel="stylesheet" href="themes/purple.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<!--START OF PAGE 1-->
<div data-role="page" id="home" data-theme="a" data-content-theme="a">
<div data-role="header">
<h1>Healthy Living App</h1>
<div data-role="navbar">
<ul>
<li><a href="index-2.html" rel="external" class="ui-btn-active ui-state-persist" data-icon="home">Home</a></li>
<li><a href="calories.html" rel="external" data-icon="info">Calories</a></li>
<li><a href="meals.html" rel="external"data-icon="calendar">Meals</a></li>
<li><a href="recipies.html" rel="external" data-icon="grid">Recipies</a></li>
<li><a href="exercises.html" rel="external" data-icon="heart">Exercises</a></li>
<li><a href="info.html" rel="external" data-icon="phone">Info</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->
<div data-role="content">
<h1><strong>Healthy Living</strong></h1>
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="Images/img2.jpg" alt="Two people jogging" title="Joggers">
</div>
<div class="item">
<img src="Images/donuts.jpg" alt="Pile of donuts" title="Pile of Donuts">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<br>
<p class="healthylivingapp">Healthy Living continues to inform and advise the public and a host of professionals including policy
makers, academics, businesses and local councils on health-related issues in an attempt to bridge the
gap between scientific research findings, policy and practice.</p>
<br>
<p class="healthylivingapp">Information on a number of health related issues looking at topics such as health inequalities, the food we eat, what we are doing to tackle the obesity problem, the relationship between a person’s health and the work that they do as well as the relationship between the environment and human health.</p>
<br>
<p class="healthylivingapp">Reducing screen time also contributes to a health living environment.</p>
</div><!-- /content -->
<div data-role="footer" class="footer">
<p>© 2019 Matthew Francis</p>
</div>
</div>
<!--END OF FIRST PAGE -->
</body>
<!-- Mirrored from studentnet.fife.ac.uk/~1880611/app - separatepages/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 30 Apr 2022 19:17:05 GMT -->
</html>