-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
97 lines (73 loc) · 4.86 KB
/
about.html
File metadata and controls
97 lines (73 loc) · 4.86 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Enchanted Bird</title>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/ea9649a32f.js" crossorigin="anonymous"></script>
<!-- Bootstrap Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<!-- CSS Stylesheets -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,900|Ubuntu&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap" rel="stylesheet">
</head>
<body>
<section class="white-section" id="title">
<nav class="navbar sticky-top navbar-expand-lg navbar-light">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="https://cryptic-island-22269.herokuapp.com/">
<img src="images/tarot.png" alt="" width="50" height="50">
</a>
</div>
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
</ul>
</div>
</nav>
<!-- Title -->
<div class="about-container">
<div class="row">
<div class="col-lg-6">
<h1 class="big-heading about-heading">About Me</h1>
<p class="about-text"> Hey there - I’m Tiffany, otherwise known as Enchanted Bird. By day, I masquerade as a business bird at
an office job, sitting in my window cubicle and doing my part to help make the world a better place.
By night, I get to be the free bird that I truly am at home with my husband and fur baby, who are
both much, much cooler than I am. </p>
<p class="about-text"> For those who feel like they’ll know me better by my “stats” – I am a sun sign Cancer, moon sign Libra
(with a Moon Pluto conjunction), Leo rising, with a Taurus midheaven. </p>
</div>
<p class="about-text"> My interest in the esoteric and paranormal is deeply-rooted; my ancestry includes multiple generations of
witches, as well as a clairvoyant who was often called upon as a healer through “laying of hands.” Growing
up deep in the mountains of Appalachia, the paranormal was simply the normal and many of the folk traditions
that were common in my family were simply thinly-veiled rituals and spells. It wasn’t until much later
in life that I had the knowledge and proper context to place them in.</p>
<p class="about-text"> These days I am trying to focus on being my best self – establishing an exercise routine that I will stick
with, eating as healthy as possible, using meditation to improve my mental health, and knowing how and
when to ask the universe for assistance with my goals. </p>
<p class="about-text"> I’ll never claim to have all the answers, but I have accumulated a lot of wisdom and experience and I’m happy
to share it with friends. Whether I’m contemplating life in general, freaking out about work, musing
over a particular spell or seeking guidance from the tarot, I’ll be here sharing it all. I’m so glad
you’ve joined me. </p>
</div>
</div>
</section>
</body>
</html>