-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
</head>
<body>
<nav>
<div class="nav-wrapper purple lighten-1">
<a href="index.html" class="brand-logo center"><i class="fas fa-filter"></i></a>
</div>
</nav>
<div class="row">
<div class="col s12 m6"><div class="card small purple lighten-2">
<div class="card-content">
<span class="card-title activator white-text text-darken-4">Budgeting<i class="material-icons right">more_vert</i></span>
<p><a class="white-text" href="budgeting.html">Check your budgeting progress!</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Budgeting<i class="material-icons right">close</i></span>
<p>Budgets are a crucial first step in the path to financial literacy and a stable lifestyle.</p>
</div>
</div></div>
<div class="col s12 m6"><div class="card small purple lighten-2">
<div class="card-content">
<span class="card-title activator white-text text-darken-4">Nutrition<i class="material-icons right">more_vert</i></span>
<p><a class="white-text" href="nutrition.html">Check your nutrition progress!</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Nutrition<i class="material-icons right">close</i></span>
<p>A healthy lifestyle can lead to happiness, hand in hand with a healthy lifestyle is nutrition.</p>
</div>
</div></div>
<div class="col s12 m6"><div class="card small purple lighten-2">
<div class="card-content">
<span class="card-title activator white-text text-darken-4">Fitness<i class="material-icons right">more_vert</i></span>
<p><a class="white-text" href="fitness.html">Check your fitness progress!</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Fitness<i class="material-icons right">close</i></span>
<p>A fit lifestyle is a great contributor to quality of life.</p>
</div>
</div></div>
<div class="col s12 m6"><div href="other.html" class="card small purple lighten-2">
<div class="card-content">
<span class="card-title activator white-text text-darken-4">Other<i class="material-icons right">more_vert</i></span>
<p><a class="white-text" href="other.html">Check your other progress!</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Other<i class="material-icons right">close</i></span>
<p>Go green, turn off your phone, here you'll find what else you can do to improve your life.</p>
</div>
</div></div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="js/materialize.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>