-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (113 loc) · 5 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<html lang="en">
<head>
<style>
@font-face {
font-family: shortstack;
src: url('./presentation/ShortStack-Regular.ttf');
}
.myTitle{
font-family: shortstack;
}
</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--own style sheet-->
<link rel="stylesheet" type="text/css" href="./presentation/css/home.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- JS file to redirect if logged in-->
<script src="application/index.js" type="text/javascript"></script>
<title>Full-Plate</title>
<link rel="stylesheet" type="text/css" href="presentation/css/materialize.css">
</head>
<body>
<div class="container">
<!-- Welcome screen title -->
<header>
<div class="myHeader">
<h5 id="welcome">WELCOME TO</h5>
<h1 class="myTitle"> full ○ plate</h1>
</div>
</header>
</br>
<div class="slider">
<ul class="slides">
<li>
<!-- <img src="https://cdn.pixabay.com/photo/2010/12/13/10/05/berries-2277_1280.jpg"> random image -->
<img src="./presentation/img/food-log-4.jpg" alt="food log">
<div class="caption center-align myBox"> <!--center-->
<h3>RECORD</h3>
<!-- <h5 class="light black-text text-lighten-3">What You've Eaten</h5> -->
<h5 class="light text-lighten-3">What You've Eaten</h5>
</div>
</li>
<li>
<img src="./presentation/img/mood-pic.jpg" alt="calendar with moods"> <!-- random image -->
<div class="caption center-align myBox"> <!--right-->
<h3>TRACK</h3>
<h5 class="light text-lighten-3">The Quality of Your Days</h5>
</div>
</li>
<li>
<!-- <img src="https://cdn.pixabay.com/photo/2016/12/26/17/28/spaghetti-1932466_1280.jpg"> random image -->
<img src="./presentation/img/summary-photo-3.jpg" alt="summary of worst foods">
<div class="caption center-align myBox"> <!--left-->
<h3>DISCOVER</h3>
<h5 class="light text-lighten-3">What Foods Cause Problems</h5>
</div>
</li>
</ul>
</div>
<!-- Welcome screen tutorial images -->
<!-- <div class="myDiv">
<div class="carousel carousel-slider center"> -->
<!-- <div class="myDiv"> -->
<!-- <div class="carousel-fixed-item center">
</div> -->
<!-- <div class="carousel-item white-text" href="#one!">
<h2>Track What You've Eaten That Day</h2>
<img src="https://cdn.pixabay.com/photo/2016/01/19/18/09/oranges-1150086_1280.jpg" alt="orange" width="300" height="300">
</div>
<div class="carousel-item white-text" href="#two!">
<h2>Check How Your Health Has Been Doing</h2>
<img src="https://cdn.pixabay.com/photo/2016/01/19/18/09/oranges-1150086_1280.jpg" alt="orange">
</div>
<div class="carousel-item white-text" href="#three!">
<h2>Find Out What Foods Cause Problems</h2>
<img src="https://cdn.pixabay.com/photo/2016/01/19/18/09/oranges-1150086_1280.jpg" alt="orange">
</div>
</div>
</div> -->
<!-- Login & Register buttons -->
<div class="container">
<p class="center-align flow-text">
<a href="presentation/loginPage.html" class="waves-effect waves-light btn-large center left">Login</a>
<a href="presentation/register.html" class="waves-effect waves-light btn-large grey center right">Register</a>
</p>
</div>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.slider');
// var instances = M.Slider.init(elems, options);
});
$(document).ready(function () {
// $('.carousel').carousel({
// fullWidth: true,
// indicators: true
// });
$('.slider').slider();
});
</script>
</body>
</html>