-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (81 loc) · 5.09 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
<!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.0">
<title>Mo's Curios</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&display=swap');
</style>
<link rel="stylesheet" href="css/Index.css" />
<!-- MDB CSS -->
<link rel="stylesheet" href="css/mdb.min.css" />
</head>
<body>
<!-- Navbar -->
<nav id="navbar_ribbon" class="navbar navbar-expand-lg">
<!-- Container wrapper -->
<div class="container-fluid">
<!-- Navbar brand -->
<a class="navbar-brand" href="#">Mo's Curios</a>
<!-- Toggle button -->
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse" data-mdb-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<!--<i class="fas fas-bars fa-bars"></i>-->
<span style="font-size:50px;">☾</span>
</button>
<!-- Collapsible wrapper -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Left links -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<!-- Navbar dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-mdb-toggle="dropdown" aria-expanded="false">
Products
</a>
<!-- Dropdown menu -->
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Candles</a></li>
<li><a class="dropdown-item" href="#">Crystals</a></li>
<li><a class="dropdown-item" href="#">Herbs</a></li>
<li><a class="dropdown-item" href="#">Spell Kits</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#" tabindex="-1">About</a>
</li>
</ul>
<!-- Left links -->
<!-- Search form -->
<form class="d-flex input-group w-auto">
<input type="search" class="form-control" placeholder="Choose Your Destiny" aria-label="Search" />
<button class="btn btn-outline-primary" type="button" data-mdb-ripple-color="dark">
Search
</button>
</form>
</div>
<!-- Collapsible wrapper -->
</div>
<!-- Container wrapper -->
</nav>
<!-- Navbar -->
<div class="container"> <img id="homepage_header" src="img/cute_mo.jpg" alt="Image of Monique Vasquez, Owner">
<p class="home_text">
My name is Monique and I have lived in Albuquerque, NM for <!--x number--> years. I grew up in Los Lunas, NM, just 30 minutes south of Albuquerque. I started Mos Curios in 2020 after I started creating jewelry and spell jars for my own use. I came up with the idea of sharing my talents and knowledge, and started the business on Facebook, through pop-up craft shows, and word of mouth. In April of 2021, I moved into my current building after building a friendship and partnership with Bobbie <!--last name-->. We offer handmade metaphysical items for your everyday needs, as well as gift sets to share the magic with your friends and family! Also available will be tarot and rune readings, by appointment. (Due to Covid-19, masks will be required throughout the reading.) </p>
<p class="home_text"> Do you want to do a specific spell, but you aren't sure how to do it or what items you need? We also sell conveninet spell kits that give you everything you need to cast your intentions to the universe! With our mini Basic Witch sets, you can experiment and explore with basic herbs, tealight candles, and quartz crystals. You can also order custom spell jars, which are premade for you, or spell kits where you can combine all of the ingredients yourself. </p>
<P class="home_text"> Every week we will be doing Witchy Wednesday; wear one of our shirts for a 15% discount off of your entire order* every Wednesday when you come into the shop! <!--exclusions apply--> </P>
<p class="home_text" id="exclusions"> *Tarot readings and Rune readings excluded.
</p>
</div>
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>