-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (96 loc) · 3.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="Susan Whitsitt">
<title>Feel Better Fast Iowa!</title>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/yeti/bootstrap.min.css" rel="stylesheet" integrity="sha384-HzUaiJdCTIY/RL2vDPRGdEQHHahjzwoJJzGUkYjHVzTwXFQ2QN/nVgX7tzoMW3Ov" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="header clearfix">
<div class="jumbotron">
<h1>Feel Better Fast!</h1>
<p class="lead">Led by Susan Whitsitt, RN, BSN, Feel Better Fast is an invitation to consider the possibility of a change, to experience a startling discovery and adventure, to begin the journey to wellness and to ask yourself, “What do I want?”</p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h2>I want to...</h2>
<ul>
<li>Stop worrying about retirement</li>
<li>Lower my cholesterol</li>
<li>Control my blood sugar</li>
<li>Lose weight</li>
<li>Own my own business and take control of my life</li>
<li>Supplement my income in these financially difficult times</li>
<li>Have more energy</li>
<li>Travel</li>
<li>Make a difference in the world</li>
<li>Have advanced nutrition made simple</li>
<li>Feel better fast!</li>
</ul>
<p>The Feel Better Fast wellness programs are adaptive, accessible and available for the Individual’s needs and goals.</p>
</div>
</div>
<footer class="footer">
<p>© 2017 Susan Whitsitt - Hosted by GitHub.</p>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.min.js"></script>
<script src="/scripts/custom.js"></script>
</footer>
</div>
<!-- /container -->
<!-- Read the Formbutton docs at formspree.io/formbutton/docs. See more examples at codepen.io/formspree -->
<script src="https://formspree.io/js/formbutton-v1.min.js" defer></script>
<script>
/* paste this line in verbatim */
window.formbutton=window.formbutton||function(){(formbutton.q=formbutton.q||[]).push(arguments)};
/* customize formbutton below*/
formbutton("create", {
action: "https://formspree.io/f/xzbqdrkg",
title: "How can we help?",
fields: [
{
type: "email",
label: "Email:",
name: "email",
required: true,
placeholder: "[email protected]"
},
{
type: "textarea",
label: "Message:",
name: "message",
placeholder: "What's on your mind?",
},
{ type: "submit" }
],
styles: {
title: {
backgroundColor: "gray"
},
button: {
backgroundColor: "gray"
}
}
});
</script>
</body>
</html>