-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
111 lines (110 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Med Cabinet</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@600&family=Yellowtail&display=swap"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<h1><a href="index.html">Med Cabinet</a></h1>
<nav>
<a href="./about.html">About us</a>
<a href="">Products</a>
<a href="">Locate a dispensary</a>
<a href="./FAQ.html">FAQ's</a>
<a href="">Contact us</a>
<a id="register" href="https://medcabinetapp.netlify.app/">Register</a>
<a href="https://medcabinetapp.netlify.app/">Login</a>
</nav>
</header>
<section class="first">
<h2>Redefining the traditional medicine cabinet.</h2>
<p>
Here at Med Cabinet, we think there's a better way to treat what
ailments you may have rather than traditional medication. Whether you
deal with Alzheimer's disease, chronic pain, epilepsy, mental health
issues, multiple sclerosis, nausea, or anything else similar to these,
you may discover that medical marijuana helps you more than any other
form of medication, with far less side effects.
</p>
</section>
<div class="break"></div>
<section>
<h3>Interested, but don't know where to start?</h3>
<div class="second">
<div>
<img
src="./photos/margo-amala-bc9DFiU7b00-unsplash.jpg"
alt="Edible cannabis cookies"
title="Edible cannabis cookies"
/>
<p>
Take our questionnaire to find out what strains, doses, and intake
methods are best for you!
<a href="">Questionnaire</a>
</p>
</div>
<div>
<p>
After taking the questionnaire, find a dispensary near you that can
accommodate your needs!
<a href="">Locate a dispensary</a>
</p>
<img
src="./photos/cbd-infos-uQEr4uWxvJc-unsplash.jpg"
alt="CBD balm"
title="CBD balm"
/>
</div>
<div>
<img
src="./photos/pharma-hemp-complex-45eGK42Vzwo-unsplash.jpg"
alt="CBD gummy bears"
title="CBD gummy bears"
/>
<p>
Read through our FAQ to learn more about the conditions that
cannabis may help treat, different types of intake methods, common
side effects, and more.
<a href="./FAQ.html">FAQ</a>
</p>
</div>
</div>
</section>
<footer>
<nav>
<a href="./about.html">About us</a>
<a href="">Products</a>
<a href="">Locate a dispensary</a>
<a href="./FAQ.html">FAQ's</a>
<a href="">Contact us</a>
</nav>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.4/gsap.min.js"></script>
<script src="./index.js"></script>
</body>
</html>