generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (71 loc) · 2.87 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
<!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" />
<meta name="description" content="MINDX is a website specialising in mindfulness as a form of cognitive behavioural therapy for inquisitive and novice meditators alike" />
<meta name="keywords" content="mindfulness, cognitive behavioural therapy, guided meditation" />
<meta name="author" content="Faris Dhoot" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" href="assets/images/favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<title>MINDX</title>
</head>
<body>
<!-- Background Image -->
<section id="background-image">
<!-- Logo -->
<header>
<a href="index.html">
<h1 id="logo">Mind<span>x</span></h1>
</a>
<!-- Navigation Bar -->
<nav>
<ul class="navbar">
<li>
<a href="index.html" class="nav-hov active">Home</a>
</li>
<li>
<a href="guided-meditations.html" class="nav-hov">Guided Meditations</a>
</li>
<li>
<div id="signup-call">
<a href="sign-up.html">Sign Up</a>
</div>
</li>
</ul>
</nav>
</header>
<!-- Site Ethos-->
<div id="ethos">
<h2>
E<span>x</span>ercise your mind
<span class="material-icons lock" aria-hidden="true">lock_open</span>
unlock your potential
</h2>
</div>
</section>
<!-- Social Media Links & Contact Details -->
<footer id="footer-home">
<ul class="social-networks">
<li>
<a href="https://facebook.com" rel="noopener" target="_blank" aria-label="Explore our Facebook page (opens in a new tab)"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="https://youtube.com" rel="noopener" target="_blank" aria-label="Explore our Youtube page (opens in a new tab)"><i class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://instagram.com" rel="noopener" target="_blank" aria-label="Explore our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com" rel="noopener" target="_blank" aria-label="Explore our Twitter page (opens in a new tab)"><i class="fab fa-twitter"></i></a>
</li>
</ul>
<a href="mailto:[email protected]">Contact Us: [email protected]</a>
<p><i class="far fa-copyright"></i> 2021 MINDX.Ltd</p>
</footer>
<!-- Font Awesome Script -->
<script src="https://kit.fontawesome.com/79a9048c05.js" crossorigin="anonymous"></script>
</body>
</html>